Started work on library node insert forms

This commit is contained in:
Stefan Zermatten
2019-06-27 16:52:28 +02:00
parent bd4fb58935
commit 9757da2cae
10 changed files with 173 additions and 8 deletions

View File

@@ -79,11 +79,11 @@ export default {
this.$emit('change', val, this.acknowledgeChange);
},
hasChangeListener(){
return this.$listeners && this.$listeners.change
return this.$listeners && this.$listeners.change;
},
forceSafeValueUpdate(){
// hack to force the value to update on the child component
this.safeValue = null
this.safeValue = null;
this.$nextTick(() => this.safeValue = this.value);
},
},