2025-07-10 19:05:38 +08:00
|
|
|
import type { AppRouteRecordRaw } from '../types';
|
|
|
|
|
import { MENU_GROUP_IDS } from '@/router/constants';
|
|
|
|
|
|
|
|
|
|
import IconRepository from '@/assets/svg/icon-repository.svg';
|
|
|
|
|
|
|
|
|
|
const COMPONENTS: AppRouteRecordRaw[] = [
|
2025-07-25 10:51:04 +08:00
|
|
|
{
|
|
|
|
|
path: '/agent',
|
|
|
|
|
name: 'AgentPlaceholder',
|
|
|
|
|
component: () => Promise.resolve({ template: '<router-view />' }), // 占位组件
|
|
|
|
|
|
|
|
|
|
},
|
2025-07-10 19:05:38 +08:00
|
|
|
];
|
|
|
|
|
|
|
|
|
|
export default COMPONENTS;
|