mirror of
https://github.com/1024-lab/smart-admin.git
synced 2026-06-02 03:55:59 +00:00
22 lines
481 B
JavaScript
22 lines
481 B
JavaScript
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')
|
|
}
|
|
]
|
|
}
|
|
|
|
];
|
|
|