fix: 修复流程图打包后出错

This commit is contained in:
xiaoxian521
2021-10-21 18:55:46 +08:00
parent 430e5d75b0
commit ca849c94e2
5 changed files with 18 additions and 22 deletions

View File

@@ -2,9 +2,15 @@
import { ref, unref } from "vue";
import { LogicFlow } from "@logicflow/core";
type nodeListType = {
text: string;
class: string;
type: string;
};
interface Props {
lf: LogicFlow;
nodeList: ForDataType<undefined>;
nodeList: Array<nodeListType>;
}
const props = withDefaults(defineProps<Props>(), {