初始化

This commit is contained in:
2026-02-22 18:56:10 +08:00
commit 26677972a6
3112 changed files with 255972 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
import type { RouteRecordRaw } from 'vue-router';
import { $t } from '#/locales';
const routes: RouteRecordRaw[] = [
{
meta: {
title: $t('plugin.toolsManagement'),
hideInMenu: true,
hideInTab: true,
hideInBreadcrumb: true,
fullPathKey: true,
},
name: 'PluginTools',
path: '/ai/plugin/tools',
component: () => import('#/views/ai/plugin/PluginTools.vue'),
},
{
meta: {
title: $t('plugin.toolsManagement'),
hideInMenu: true,
hideInTab: true,
hideInBreadcrumb: true,
fullPathKey: true,
},
name: 'PluginToolEdit',
path: '/ai/plugin/tool/edit',
component: () => import('#/views/ai/plugin/PluginToolEdit.vue'),
},
];
export default routes;