mirror of
https://github.com/1024-lab/smart-admin.git
synced 2026-06-07 22:36:10 +00:00
v1.x
This commit is contained in:
21
smart-admin-h5/src/router/develop/develop.js
Normal file
21
smart-admin-h5/src/router/develop/develop.js
Normal file
@@ -0,0 +1,21 @@
|
||||
import { ROUTER_PERMISSION_TYPE } from '@/router/router-const';
|
||||
|
||||
export const developRouter = [
|
||||
{
|
||||
path: '/develop',
|
||||
component: () => import('@/views/dashboard/dashboard'),
|
||||
children: [
|
||||
{
|
||||
path: '/develop/config',
|
||||
name: 'DevelopConfig',
|
||||
meta: {
|
||||
title: '开发专用配置',
|
||||
permissionType: ROUTER_PERMISSION_TYPE.NEED_LOGIN.value
|
||||
},
|
||||
component: () => import('views/develop/config')
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user