vue-quill-editor富文本编辑器,设置只读/禁止编辑
<quill-editorref="quillEditor"v-model="formData.content"@focus="focus($event)" //在焦点事件时候处理:options="options"/>当用户点击富文本框输入框的时候,就会被设置为禁止编辑//获取焦点事件focus(event){event.enable(false);//设置富文本编辑器不可编辑}..
·
<quill-editor
ref="quillEditor"
v-model="formData.content"
@focus="focus($event)" //在焦点事件时候处理
:options="options"
/>
当用户点击富文本框输入框的时候,就会被设置为禁止编辑
//获取焦点事件
focus(event){
event.enable(false); //设置富文本编辑器不可编辑
}
更多推荐
已为社区贡献4条内容
所有评论(0)