index.js 241 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 import balance from './balance'; import store from './store'; let routers = [balance, store]; routers.forEach(router => { router.path = `/finance${router.path}`; router.name = `finance.${router.name}`; }); export default routers;