/** When your routing table is too long, you can split it into small modules**/ import Layout from '@/views/layout/Layout' const chartsRouter = { path: '/charts', component: Layout, redirect: 'noredirect', name: 'charts', meta: { title: 'charts', icon: 'chart' }, children: [ { path: 'keyboard', component: () => import('@/views/charts/keyboard'), name: 'keyboardChart', meta: { title: 'keyboardChart', noCache: true } }, { path: 'line', component: () => import('@/views/charts/line'), name: 'lineChart', meta: { title: 'lineChart', noCache: true } }, { path: 'mixchart', component: () => import('@/views/charts/mixChart'), name: 'mixChart', meta: { title: 'mixChart', noCache: true } } ] } export default chartsRouter