mirror of
https://github.com/1024-lab/smart-admin.git
synced 2026-06-11 00:06:14 +00:00
v1.0.0
This commit is contained in:
40
front/src/router/module/reload.js
Normal file
40
front/src/router/module/reload.js
Normal file
@@ -0,0 +1,40 @@
|
||||
import Main from '@/components/main';
|
||||
// 动态加载
|
||||
export const reload = [
|
||||
{
|
||||
path: '/reload',
|
||||
name: 'Reload',
|
||||
component: Main,
|
||||
meta: {
|
||||
title: '动态加载',
|
||||
icon: 'icon iconfont icondongtaijiazai'
|
||||
},
|
||||
|
||||
children: [
|
||||
{
|
||||
path: '/reload/smart-reload-list',
|
||||
name: 'SmartReloadList',
|
||||
meta: {
|
||||
title: 'SmartReload',
|
||||
icon: 'icon iconfont icondongtaijiazai',
|
||||
childrenPoints: [
|
||||
{
|
||||
title: '查询',
|
||||
name: 'smart-reload-search'
|
||||
},
|
||||
{
|
||||
title: '执行reload',
|
||||
name: 'smart-reload-update'
|
||||
},
|
||||
{
|
||||
title: '查看执行结果',
|
||||
name: 'smart-reload-result'
|
||||
}
|
||||
]
|
||||
},
|
||||
component: () =>
|
||||
import('@/views/reload/smart-reload/smart-reload-list.vue')
|
||||
}
|
||||
]
|
||||
}
|
||||
];
|
||||
Reference in New Issue
Block a user