You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
763 B
30 lines
763 B
10 months ago
|
const Base = () => import('/nerv-lib/saas/view/system/layout/content.vue');
|
||
|
const home = {
|
||
|
path: '/home',
|
||
|
name: 'home',
|
||
|
meta: { title: '首页', icon: 'dicizhishou', index: 0, hideChildren: true },
|
||
|
redirect: { name: 'homeIndex' },
|
||
|
children: [
|
||
|
{
|
||
|
path: 'homeModule',
|
||
|
name: 'HomeModule',
|
||
|
meta: { title: '首页', hideChildren: true, icon: 'dicizhishou' },
|
||
|
component: Base,
|
||
|
redirect: { name: 'homeIndex' },
|
||
|
children: [
|
||
|
{
|
||
|
path: 'index',
|
||
|
name: 'homeIndex',
|
||
|
component: () => import('/@/view/developing.vue'),
|
||
|
meta: {
|
||
|
title: '首页',
|
||
|
keepAlive: true,
|
||
|
// backApi: [],
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
],
|
||
|
};
|
||
|
export default home;
|