mirror of
https://github.com/1024-lab/smart-admin.git
synced 2026-06-11 00:06:14 +00:00
32 lines
729 B
JavaScript
32 lines
729 B
JavaScript
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')
|
|
}
|
|
]
|
|
}
|
|
];
|