Commit 84552a62 by zws

fix: 解决导入模型json 数据没有保存问题

parent 9febee7a
...@@ -190,6 +190,7 @@ const importLocalFile = () => { ...@@ -190,6 +190,7 @@ const importLocalFile = () => {
reader.onload = function () { reader.onload = function () {
if (isString(this.result)) { if (isString(this.result)) {
processNodeTree.value = JSON.parse(this.result) processNodeTree.value = JSON.parse(this.result)
emits('save', processNodeTree.value)
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment