index.js 241 Bytes
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;