文章刚开始先来介绍一下vue-quill-editor富文本编辑器的简单使用,具体操作步骤如下:
安装:
main.js:
在需要使用的地方:
看到了一个网友分享的如何禁用vue-quill-editor 富文本编辑器,分享给大家,也谢谢原作者的分享。
vue:
js:
内容
},editorOption: { // 定义富文本编辑器显示
modules:{
toolbar:[
['bold','italic','underline','strike'],// 加粗、倾斜、下划线、删除线
原文链接:https://www.f2er.com/vue/30012.html [{'header':1},{'header':2}],// <a href="https://www.jb51.cc/tag/biaoti/" target="_blank" class="keywords">标题</a>一、<a href="https://www.jb51.cc/tag/biaoti/" target="_blank" class="keywords">标题</a>二
[{'list':'ordered'},{'list':'bullet'}],// 列表
[{'color':[]},{'background':[]}],// 字体颜色、背景颜色
]
}
}
},methods: {
onEditorReady(){ // 富文本准备时的事件
},onEditorFocus(val,editor){ // 富文本获得焦点时的事件
console.log(val); // 富文本获得焦点时的<a href="https://www.jb51.cc/tag/neirong/" target="_blank" class="keywords">内容</a>
editor.enable(false); // 在<a href="https://www.jb51.cc/tag/huoqu/" target="_blank" class="keywords">获取</a>焦点的时候禁用
},onEditorBlur(val){ // 富文本失去焦点时的事件
console.log(val); // 富文本失去焦点时的<a href="https://www.jb51.cc/tag/neirong/" target="_blank" class="keywords">内容</a>
},onContentChange(val){ // 富文本<a href="https://www.jb51.cc/tag/neirong/" target="_blank" class="keywords">内容</a>改变时的事件
console.log(val); // 富文本改变时的<a href="https://www.jb51.cc/tag/neirong/" target="_blank" class="keywords">内容</a>
}
}
}