diff --git a/src/simple-flowchart/components/FlowchartNode.vue b/src/simple-flowchart/components/FlowchartNode.vue index 26b9bd8..88f0833 100644 --- a/src/simple-flowchart/components/FlowchartNode.vue +++ b/src/simple-flowchart/components/FlowchartNode.vue @@ -202,6 +202,7 @@ export default { saveEdit() { this.show.editor = false; this.$emit('update:data', this.editorData); + this.$emit("dataUpdated", this.data); } } } diff --git a/src/simple-flowchart/components/SimpleFlowchart.vue b/src/simple-flowchart/components/SimpleFlowchart.vue index 1b5475b..f6c7283 100644 --- a/src/simple-flowchart/components/SimpleFlowchart.vue +++ b/src/simple-flowchart/components/SimpleFlowchart.vue @@ -1,24 +1,27 @@