第一次提交
This commit is contained in:
23
jeecgboot-vue3/src/router/routes/staticRouter.ts
Normal file
23
jeecgboot-vue3/src/router/routes/staticRouter.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
import type { AppRouteRecordRaw } from '/@/router/types';
|
||||
import { LAYOUT } from '/@/router/constant';
|
||||
|
||||
export const AI_ROUTE: AppRouteRecordRaw = {
|
||||
path: '',
|
||||
name: 'ai-parent',
|
||||
component: LAYOUT,
|
||||
meta: {
|
||||
title: 'ai',
|
||||
},
|
||||
children: [
|
||||
{
|
||||
path: '/ai',
|
||||
name: 'ai',
|
||||
component: () => import('/@/views/dashboard/ai/index.vue'),
|
||||
meta: {
|
||||
title: 'AI助手',
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
export const staticRoutesList = [AI_ROUTE];
|
||||
Reference in New Issue
Block a user