Fixed watch syntax
parent
15f4aeb4b8
commit
88d655edb6
|
@ -59,8 +59,10 @@ export default {
|
||||||
editorStyle: null
|
editorStyle: null
|
||||||
},
|
},
|
||||||
quill: null,
|
quill: null,
|
||||||
watch(value) {
|
watch: {
|
||||||
this.renderValue(value);
|
value(newValue) {
|
||||||
|
this.renderValue(newValue);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.quill = new Quill(this.$refs.editorElement, {
|
this.quill = new Quill(this.$refs.editorElement, {
|
||||||
|
|
Loading…
Reference in New Issue