Closed
Description
The editor doesn't change when it's v-model variable changes. Why is that?
So testReset() does nothing visual in this example.
Code:
<QuillEditor
:id="name"
v-model:content="test"
:name="name"
theme="bubble"
toolbar="essential"
content-type="html"
></QuillEditor>
<button @click="testReset()">reset</button>
data: {
return {
test: ""
}
}
methods: {
testReset() {
console.log(this.test);
this.test = "resetted";
},
}