集成jeecg的aiflow AI流程设计器

This commit is contained in:
JEECG
2025-04-07 23:23:52 +08:00
parent beff2a271e
commit 25b30153a0
4 changed files with 16 additions and 3 deletions

View File

@ -2,10 +2,12 @@ import type { App } from 'vue';
import { warn } from '/@/utils/log';
import { registerDynamicRouter } from '/@/utils/monorepo/dynamicRouter';
// 引入模块
import PACKAGE_TEST_JEECG_ONLINE from '@jeecg/online';
import PACKAGE_JEECG_ONLINE from '@jeecg/online';
import PACKAGE_JEECG_AIFLOW from '@jeecg/aiflow';
export function registerPackages(app: App) {
use(app, PACKAGE_TEST_JEECG_ONLINE);
use(app, PACKAGE_JEECG_ONLINE);
use(app, PACKAGE_JEECG_AIFLOW);
}
// noinspection JSUnusedGlobalSymbols