Files
qhmes/jeecgboot-vue3/src/router/routes/staticRouter.ts
2026-04-03 09:56:14 +08:00

24 lines
468 B
Vue

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];