Files
lingji-work-fe/src/router/routes/modules/agent.ts

16 lines
389 B
TypeScript
Raw Normal View History

import type { AppRouteRecordRaw } from '../types';
import { MENU_GROUP_IDS } from '@/router/constants';
import IconRepository from '@/assets/svg/icon-repository.svg';
const COMPONENTS: AppRouteRecordRaw[] = [
{
path: '/agent',
name: 'AgentPlaceholder',
component: () => Promise.resolve({ template: '<router-view />' }), // 占位组件
},
];
export default COMPONENTS;