mirror of
https://github.com/1024-lab/smart-admin.git
synced 2026-06-11 16:26:13 +00:00
v1.0.0
This commit is contained in:
31
front/src/router/module/keep-alive.js
Normal file
31
front/src/router/module/keep-alive.js
Normal file
@@ -0,0 +1,31 @@
|
||||
import Main from '@/components/main';
|
||||
// 接口文档
|
||||
export const keepAlive = [
|
||||
{
|
||||
path: '/keep-alive',
|
||||
name: 'KeepAlive',
|
||||
component: Main,
|
||||
meta: {
|
||||
title: 'KeepAlive',
|
||||
icon: 'icon iconfont iconxitongshezhi'
|
||||
},
|
||||
children: [
|
||||
{
|
||||
path: '/keep-alive/content-list',
|
||||
name: 'KeepAliveContentList',
|
||||
meta: {
|
||||
title: 'KeepAlive列表'
|
||||
},
|
||||
component: () => import('@/views/keep-alive/content-list.vue')
|
||||
},
|
||||
{
|
||||
path: '/keep-alive/add-content',
|
||||
name: 'KeepAliveAddContent',
|
||||
meta: {
|
||||
title: 'KeepAlive表单'
|
||||
},
|
||||
component: () => import('@/views/keep-alive/add-content.vue')
|
||||
}
|
||||
]
|
||||
}
|
||||
];
|
||||
Reference in New Issue
Block a user