使用vue-quill-editor实现富文本编辑器(封装带移入提示)

更新时间:2023-07-14 03:39:19 阅读: 评论:0

使⽤vue-quill-editor实现富⽂本编辑器(封装带移⼊提⽰)
看了很多关于vue项⽬的富⽂本编译器,终于找到⼀个最适合项⽬的了
vue-quill-editor的完整使⽤⽅法及封装,分享给⼤家!
使⽤⽅法:
1、npm 安装 vue-quill-editor
npm i vue-quill-editor
2、在main.js中全局注册引⼊(也可以在页⾯中按需引⼊)
import  VueQuillEditor from 'vue-quill-editor'
// require styles 引⼊样式
import 'quill/ss';
import 'quill/dist/quill.snow.css';
import 'quill/dist/quill.bubble.css';
3.在模板中引⽤
<template>
<quill-editor
v-model="content"
ref="myQuillEditor"
:options="editorOption"
@blur="onEditorBlur($event)" @focus="onEditorFocus($event)"
@change="onEditorChange($event)">
</quill-editor>
</template>
<script>
import { quillEditor } from 'vue-quill-editor'
export default{
data(){
return {
content:null,
editorOption:{}
}
},
methods:{
onEditorBlur(){//失去焦点事件
},
onEditorFocus(){//获得焦点事件
},
onEditorChange(){//内容改变事件
}
}
}
</script>
使⽤效果:
项⽬中⼀般会进⾏多次调⽤,⽽且⽬前的使⽤效果还达不到⼀般项⽬的要求现在我们进⾏简单的⼆次封装
直接上代码!
1、新建⼀个Editor.vue⽂件
<template>
<div class="editor-box" >
<!-- 图⽚上传组件辅助-->
<el-upload
class="avatar-uploader"
:action="rverUrl"
name="img"
:headers="header"
:show-file-list="fal"
:
on-success="uploadSuccess"
:on-error="uploadError"
:before-upload="beforeUpload"
></el-upload>
<quill-editor
class="editor"
v-model="content"
九地篇ref="myQuillEditor"3什么意思
:options="editorOption"
@blur="onEditorBlur($event)"
@focus="onEditorFocus($event)"
房产物业@change="onEditorChange($event)"
></quill-editor>
</div>
</template>
<script>
// ⼯具栏配置
const toolbarOptions = [
["bold", "italic", "underline", "strike"], // 加粗 斜体 下划线 删除线
["blockquote", "code-block"], // 引⽤  代码块
[{ header: 1 }, { header: 2 }], // 1、2 级标题
[{ list: "ordered" }, { list: "bullet" }], // 有序、⽆序列表
[{ script: "sub" }, { script: "super" }], // 上标/下标
[{ indent: "-1" }, { indent: "+1" }], // 缩进
// [{'direction': 'rtl'}],                        // ⽂本⽅向
[{ size: ["small", fal, "large", "huge"] }], // 字体⼤⼩
[{ header: [1, 2, 3, 4, 5, 6, fal] }], // 标题
[{ color: [] }, { background: [] }], // 字体颜⾊、字体背景颜⾊
[{ font: [] }], // 字体种类
[{ align: [] }], // 对齐⽅式
["clean"], // 清除⽂本格式
["link", "image", "video"] // 链接、图⽚、视频
];
整式的加减思维导图import { addQuillTitle } from './quill-title.js' import { quillEditor } from "vue-quill-editor"; import "quill/ss";
import "quill/dist/quill.snow.css";
import "quill/dist/quill.bubble.css";
export default {
props: {
/*编辑器的内容*/
value: {
type: String
},
/*图⽚⼤⼩*/
湿疹会不会传染
maxSize: {
type: Number,
default: 4000 //kb
}
},
components: {
quillEditor
},
data() {
return {
content: this.value,
quillUpdateImg: fal, // 根据图⽚上传状态来确定是否显⽰loading动画,刚开始是fal,不显⽰      editorOption: {
党员不能出国吗
// placeholder: "",
theme: "snow", // or 'bubble'
placeholder: "您想说点什么?",
modules: {
toolbar: {
container: toolbarOptions,
// container: "#toolbar",
handlers: {
image: function(value) {
if (value) {
// 触发input框选择图⽚⽂件
document.querySelector(".avatar-uploader input").click();
} el {
this.quill.format("image", fal);
}
}
// link: function(value) {
//  if (value) {
//    var href = prompt('请输⼊url');
//    this.quill.format("link", href);
//  } el {
//    this.quill.format("link", fal);
/
/  }
// },
注册会计师审计
}
}
}
},
rverUrl: "/v1/blog/imgUpload", // 这⾥写你要上传的图⽚服务器地址
header: {
// token: ken
} // 有的图⽚服务器要求请求头需要有token
};
},
mounted() {
addQuillTitle();
},
methods: {
onEditorBlur() {
//失去焦点事件
},
onEditorFocus() {
//获得焦点事件
},
onEditorChange() {
//内容改变事件
this.$emit("input", t);
},
// 富⽂本图⽚上传前
beforeUpload() {
// 显⽰loading动画
this.quillUpdateImg = true;
},
uploadSuccess(res) {
// res为图⽚服务器返回的数据
/
/ 获取富⽂本组件实例
let quill = this.$QuillEditor.quill;
// 如果上传成功
if (de == 200) {
// 获取光标所在位置
let length = Selection().index;
// 插⼊图⽚  res.url为服务器返回的图⽚地址        quill.inrtEmbed(length, "image", res.url);        // 调整光标到最后
quill.tSelection(length + 1);
} el {
this.$("图⽚插⼊失败");
}
// loading动画消失
物业保洁服务标准
this.quillUpdateImg = fal;
},
// 富⽂本图⽚上传失败
uploadError() {
// loading动画消失
this.quillUpdateImg = fal;
this.$("图⽚插⼊失败");
}
}
};
</script>
<style>
.editor-box{
height: 330px;
width: 730px;
}

本文发布于:2023-07-14 03:39:19,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/82/1095431.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:上传   事件   字体   服务器   注册
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图