QuillEditor富文本编辑器光标自动跳至页首问题
<QuillEditorCom> :content=content @onEditorChange='onEditorChange' ref='myQuillEditor' </QuillEditorCom>
onEditorChange(val){ // 使编辑器不可用后再可用 this.$refs.myQuillEditor.quill.enable(false) setTimeout(()=>{ this.$refs.myQuillEditor.quill.enable(true) // 要求焦点在编辑器上 this.$refs.myQuillEditor.quill.getSelection(focus=true) }) }
Quill官方中文文档地址:Quill
内容仅供个人学习、记录使用,侵删