routes.js

import config from './config.js';
const routes = [
    {
        path: '/test',
        component: { template: '<router-view class="'+config.className+'"></router-view>' },
        children: [
            { path: 'index', component: () => import('./page/index.vue'), meta: { pageName: '模块模板' } }
        ]
    }
];
export default routes;