提交基础页面

This commit is contained in:
zhoulingpo
2023-04-17 10:31:08 +08:00
parent 4ed0752b86
commit 61e01291fd
12 changed files with 2838 additions and 630 deletions
+35
View File
@@ -0,0 +1,35 @@
const routes = [
{
path: '/permission',
name: '',
component: () => import('../../views/Layout.vue'),
children: [
{
path: 'step1',
name: 'urlIndex',
component: () => import('../../views/permissionApplication/launch'),
meta: {
crumb: ['权限申请']
}
},
{
path: 'step2',
name: 'urlIndex',
component: () => import('../../views/permissionApplication/launch'),
meta: {
crumb: ['权限申请']
}
},
{
path: 'step3',
name: 'urlIndex',
component: () => import('../../views/permissionApplication/launch'),
meta: {
crumb: ['权限申请']
}
}
]
}
]
export default routes