feat(Workflow): 新增工作流节点组件

This commit is contained in:
chengcheng
2025-10-06 16:08:44 +08:00
parent 43e29a267e
commit 94952fb924
12 changed files with 701 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
/**
* 页面插件示例
*/
import {ComponentSceneConst, type IComponentMateInfo} from "~/composables";
export default {
name: "Markdown2Html", // 插件名称 备注:带上特殊标识,不要和已有插件重名,比如Remote+插件名
path: "./composables/worklfow/node/Markdown2HtmlNode.ts", // 插件路径
scenes: ComponentSceneConst.Workflow, // 组件场景
description: "",
data: undefined,
} satisfies IComponentMateInfo<typeof ComponentSceneConst.Workflow>;