Files
SaaS-lib/hx-ai-intelligent/src/router/home.ts

30 lines
763 B
TypeScript
Raw Normal View History

2024-05-21 16:42:16 +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: [
{
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,
2024-06-04 19:22:11 +08:00
// backApi: [],
2024-05-21 16:42:16 +08:00
},
},
],
},
],
};
export default home;