28 lines
575 B
JavaScript
28 lines
575 B
JavaScript
const routes = [
|
|
{
|
|
path: '/permission',
|
|
name: '',
|
|
component: () => import('../../views/Layout.vue'),
|
|
children: [
|
|
{
|
|
path: 'launch',
|
|
name: 'urlIndex',
|
|
component: () => import('../../views/permissionApplication/launch'),
|
|
meta: {
|
|
crumb: ['权限申请']
|
|
}
|
|
},
|
|
{
|
|
path: 'examine',
|
|
name: 'urlIndex',
|
|
component: () => import('../../views/permissionApplication/examine'),
|
|
meta: {
|
|
crumb: ['权限申请']
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
|
|
export default routes
|