Files
SaaS-lib/hx-op/src/router/home.ts

21 lines
495 B
TypeScript
Raw Normal View History

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: '首页',
keepAlive: true,
// backApi: [],
},
2024-06-07 15:11:04 +08:00
},
],
};
export default home;