Files
SaaS-lib/hx-op/src/router/home.ts
2024-07-18 14:56:26 +08:00

21 lines
496 B
TypeScript

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: 'index',
name: 'homeIndex',
component: () => import('/@/view/developing.vue'),
meta: {
title: '首页',
keepAlive: false,
// backApi: [],
},
},
],
};
export default home;