重构代码结构、数据传递方式,方便数据存取

This commit is contained in:
fofolee
2025-01-05 00:22:53 +08:00
parent dcaa00823b
commit 827c702e50
42 changed files with 2713 additions and 2143 deletions

View File

@@ -58,10 +58,6 @@ export default {
type: Object,
required: true,
},
isCollapsed: {
type: Boolean,
default: false,
},
},
emits: [
"update:outputVariable",
@@ -90,6 +86,9 @@ export default {
this.command.commandType === this.command.commandChain?.slice(-1)[0]
);
},
isCollapsed() {
return this.command.isCollapsed;
},
},
};
</script>