UnisKB/ui/src/router/modules/1application.ts

21 lines
562 B
TypeScript
Raw Normal View History

2025-06-03 08:08:49 +00:00
import { ComplexPermission } from '@/utils/permission/type'
const applicationRouter = {
path: '/application',
name: 'application',
2025-06-18 04:14:40 +00:00
meta: { title: 'views.application.title' },
2025-06-03 08:08:49 +00:00
redirect: '/application',
component: () => import('@/layout/layout-template/SimpleLayout.vue'),
children: [
{
path: '/application',
name: 'application-index',
meta: { title: '应用主页', activeMenu: '/application' },
2025-06-03 09:29:33 +00:00
component: () => import('@/views/application/index.vue'),
hidden: true,
2025-06-03 08:08:49 +00:00
},
2025-06-03 09:29:33 +00:00
],
2025-06-03 08:08:49 +00:00
}
export default applicationRouter