/** * 基础路由 * @type { *[] } */ const constantRouterMap = [ { path: '/', component: () => import('@/layouts/AppSider.vue'), redirect: { name: 'Communication' }, children: [ { path: '/communication', name: 'Communication', title: '通讯设置', component: () => import('@/views/communication/index.vue') }, { path: '/card', name: 'Card', title: '卡片设置', component: () => import('@/views/card/index.vue') }, // { // path: '/advanced', // name: 'Advanced', // title: '高级设置', // component: () => import('@/views/advanced/index.vue') // }, ] }, ] export default constantRouterMap