2024-06-07 15:11:04 +08:00
|
|
|
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: [
|
|
|
|
{
|
2024-07-05 14:12:53 +08:00
|
|
|
path: 'index',
|
|
|
|
name: 'homeIndex',
|
|
|
|
component: () => import('/@/view/developing.vue'),
|
|
|
|
meta: {
|
|
|
|
title: '首页',
|
2024-07-18 14:56:26 +08:00
|
|
|
keepAlive: false,
|
2024-07-05 14:12:53 +08:00
|
|
|
// backApi: [],
|
|
|
|
},
|
2024-06-07 15:11:04 +08:00
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
export default home;
|