<quill-editor
v-model="quillContent"
ref="myQuillEditor"
:options="quillOptions"
@change="onContentChange($event)"
</quill-editor>
注意:
1.content需要通过change赋值,否则content为null
onContentChange ({ html }) { this.quillContent = html },
来源:CSDN
作者:紫麦熊
链接:https://blog.csdn.net/m0_37378152/article/details/104580952