How to use onkeyup, onchange events in quill editor in nuxt js i have to check the text entered for bad words
<quill-editor id="description" v-model="$v.form.description.$model"/>
How to use onkeyup, onchange events in quill editor in nuxt js i have to check the text entered for bad words
<quill-editor id="description" v-model="$v.form.description.$model"/>
With quill-editor, you can use @change
<quill-editor :content="text" @change="onTextChange" />
onTextChange(newText) {
// Do your verification
this.text = newText;
}