editor富文本编辑器禁用


<!-- 富文本编辑器 -->
<editor ref="editor" v-model="messageContent"/>

editor富文本编辑器,不是vue-quill-editor 如何做禁用不可编辑?

通过read-only设置只读,成功解决问题

this.$refs.editor.Quill.enable(false) 试试

quill富文本编辑器,不是vue-quill-editor

禁用富文本:this.$refs.editor.Quill.enable(false)

https://blog.csdn.net/qq_33475629/article/details/124615384