mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-04-25 02:58:23 +08:00
37 lines
842 B
JavaScript
37 lines
842 B
JavaScript
/** 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
|