We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b358bd4 commit 418700dCopy full SHA for 418700d
src/ArrayView.vue
@@ -103,6 +103,13 @@ export default {
103
hideMyItem: {}
104
};
105
},
106
+ watch: {
107
+ parsedData: {
108
+ handler(newValue, oldValue) {
109
+ this.flowData = this.parsedData;
110
+ }
111
112
+ },
113
components: {
114
"item-add-form": ItemAddForm
115
src/JsonView.vue
@@ -94,12 +94,11 @@ export default {
94
props: { parsedData: {} },
95
data () {
96
return {
97
- flowData: [],
+ flowData: this.parsedData,
98
toAddItem: false,
99
hideMyBlock: {}
100
101
102
-
created () {
this.flowData = this.parsedData;
0 commit comments