Ⅰ. 前言
quillEditor
毫无疑问一款非常强大的 富文本编辑器- 在
vue
中一个也非常好用 ,而且也十分轻量的; - 然而如今的vue3 我们该如何使用它呢 :
Ⅱ.vue3 中 安装 quillEditor
① 下载
npm install @vueup/vue-quill@alpha --save
② 在main.js 中全局组件式导入
import{ createApp }from'vue';import{ QuillEditor }from'@vueup/vue-quill'import'@vueup/vue-quill/dist/vue-quill.snow.css';createApp(App).component('QuillEditor', QuillEditor).mount('#app')
③全局使用
<template><quill-editorcontent-type='html':content='content':option='option'@blur='editorBlur($event)'/></template><scriptsetup>import{ ref }from'vue';let content =ref("<p> 初始内容。。。</p>");let option = 。。。。
</script>
content-type
设置保存的文本类型 ,html
=> 已超文本的形式保存;content
内容也就是这个超文本 => 返回的为 很长的string
字符串 (HTML
文本);- 后端保存这个字符串, 用的时候,把这个字符串 返回来 内容就渲染啦;
- 引入的图片,图片也是
Base64
显示,所以保存 一个字符串就是 一篇富文本 ;
④ 配置项
option
则是配置项,表示你要加入那些功能;- 加了多少 最后会被
treeShaking
不用的摇掉 ,从而打包更小;
let editorOption ={
modules:{
toolbar:[['bold','italic','underline','strike'],// 加粗 斜体 下划线 删除线[{ color:[]},{ background:[]}],// 字体颜色、字体背景颜色[{ align:[]}],// 对齐方式[{ size:['small',false,'large','huge']}],// 字体大小[{ font:[]}],// 字体种类[{ header:[1,2,3,4,5,6,false]}],// 标题[{ direction:'ltl'}],// 文本方向[{ direction:'rtl'}],// 文本方向[{ indent:'-1'},{ indent:'+1'}],// 缩进[{ list:'ordered'},{ list:'bullet'}],// 有序、无序列表[{ script:'sub'},{ script:'super'}],// 上标/下标['blockquote','code-block'],// 引用 代码块['clean'],// 清除文本格式['link','image','video'],// 链接、图片、视频],},};
⑤ 事件
- 同时富文本也可以绑定很多类型的事件
- 如失去焦点事件 👇
<quill-editor:content='content':option='option'@blur='editorBlur($event)'/>
......
<scriptsetup>functioneditorBlur(val){
console.log('当前的文本框的内容:'+ val);}</script>
更多内容可以参考官网 => quillEditor 官网
本文转载自: https://blog.csdn.net/weixin_42232622/article/details/126317622
版权归原作者 野生切图仔 所有, 如有侵权,请联系我们删除。
版权归原作者 野生切图仔 所有, 如有侵权,请联系我们删除。