feat: 增加技能管理模块试验性功能,等待优化
This commit is contained in:
18
easyflow-ui-admin/app/src/router/routes/modules/skill.ts
Normal file
18
easyflow-ui-admin/app/src/router/routes/modules/skill.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
import type {RouteRecordRaw} from 'vue-router';
|
||||
|
||||
const routes: RouteRecordRaw[] = [
|
||||
{
|
||||
name: 'SkillDetail',
|
||||
path: '/ai/skill/detail/:id',
|
||||
component: () => import('#/views/ai/skill/SkillDetail.vue'),
|
||||
meta: {
|
||||
title: '技能详情',
|
||||
openInNewWindow: true,
|
||||
hideInMenu: true,
|
||||
activePath: '/ai/skill',
|
||||
},
|
||||
},
|
||||
];
|
||||
|
||||
export default routes;
|
||||
|
||||
Reference in New Issue
Block a user