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

29 lines
757 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',
2024-06-21 15:19:28 +08:00
meta: { title: '首页', icon: 'shouye', index: 0, hideChildren: true },
2024-05-21 16:42:16 +08:00
redirect: { name: 'homeIndex' },
children: [
{
2024-06-14 11:49:51 +08:00
path: 'index',
name: 'homeIndex',
2024-06-21 15:19:28 +08:00
meta: { title: '首页', hideChildren: true, icon: 'shouye' },
2024-06-14 11:49:51 +08:00
component: () => import('/@/view/developing.vue'),
2024-06-14 18:27:07 +08:00
// redirect: { name: 'homeIndex' },
2024-06-14 11:49:51 +08:00
// children: [
// {
// path: 'index',
// name: 'homeIndex',
// meta: {
// title: '首页',
2024-07-18 14:56:26 +08:00
// keepAlive: false,
2024-06-14 11:49:51 +08:00
// // backApi: [],
// },
// },
// ],
2024-05-21 16:42:16 +08:00
},
],
};
export default home;