24 lines
468 B
Vue
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];
|