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