You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.1 KiB

export default {
path: 'test',
meta: {title: '测试页面', icon: 'el-icon-warning'},
children: [
{
path: 'develop',
component: 'example/test/develop/',
meta: {title: '开发测试'}
},
{
path: 'cache',
meta: {title: '详情页缓存测试', noCache: false},
children: [
{
path: 'detailPage1',
component: 'example/test/cache/detail',
meta: {
title: '详情页1',
usePathKey: true,
commonModule: '@/view/example/test/cache/detailPage'
}
},
{
path: 'detailPage2',
component: 'example/test/cache/detail',
meta: {
title: '详情页2',
usePathKey: true,
commonModule: '@/view/example/test/cache/detailPage'
}
}
]
}
]
}