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

pull/667/head
zws 2025-01-16 09:29:34 +08:00
parent 9febee7abe
commit 84552a6253
1 changed files with 1 additions and 0 deletions

View File

@ -190,6 +190,7 @@ const importLocalFile = () => {
reader.onload = function () {
if (isString(this.result)) {
processNodeTree.value = JSON.parse(this.result)
emits('save', processNodeTree.value)
}
}
}