Files
faw-report-library-web/src/router/modules/permission.js
T
2023-04-23 14:04:52 +08:00

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