add 增加logicflow流程图预览

This commit is contained in:
gssong
2025-05-25 11:47:09 +08:00
parent 1ea70dd3ce
commit 3019701856
11 changed files with 675 additions and 155 deletions
+16
View File
@@ -0,0 +1,16 @@
import { CircleNode, CircleNodeModel } from '@logicflow/core';
class endModel extends CircleNodeModel {
initNodeData(data) {
super.initNodeData(data);
this.r = 20;
}
}
class endView extends CircleNode {}
export default {
type: 'end',
model: endModel,
view: endView
};