vue使用wangEditor,工具栏可换行
vue简单封装wangEditor富文本编辑器1.wangEditor介绍2.wangEditor安装3.封装组件4.父组件中使用1.wangEditor介绍—— 轻量级 web 富文本编辑器,配置方便,使用简单。支持 IE10+ 浏览器。2.wangEditor安装npm install wangeditor3.封装组件wangeditor.js<template><div&g
·
vue简单封装wangEditor富文本编辑器
1.wangEditor介绍
—— 轻量级 web 富文本编辑器,配置方便,使用简单。支持 IE10+ 浏览器。
2.wangEditor安装
npm install wangeditor
3.封装组件
wangeditor.js
<template>
<div>
<div class="editor" id="editorElem"></div>
</div>
</template>
<script>
import E from "wangeditor";
export default {
data() {
return {
editorContent: "",
editor: undefined,
};
},
props: {
value: {
type: String,
default: undefined
}
},
methods: {
getContent: function () {
return this.editorContent;
}
},
mounted() {
var editor = new E("#editorElem");
editor.customConfig.onchange = html => {
this.editorContent = html;
};
editor.customConfig.menus = [
"head", // 标题
"bold", // 粗体
"fontSize", // 字号
"fontName", // 字体
"italic", // 斜体
"underline", // 下划线
"strikeThrough", // 删除线
"foreColor", // 文字颜色
"backColor", // 背景颜色
"link", // 插入链接
"list", // 列表
"justify", // 对齐方式
"quote", // 引用
"emoticon", // 表情
"image", // 插入图片
"table", // 表格
// "video", // 插入视频
"code", // 插入代码
"undo", // 撤销
"redo" // 重复
];
editor.customConfig.zIndex = 100;
//过滤掉复制文本中自带的样式,默认开启
editor.customConfig.pasteFilterStyle = false;
// 自定义处理粘贴的文本内容
editor.customConfig.pasteTextHandle = function (content) {
// content 即粘贴过来的内容(html 或 纯文本),可进行自定义处理然后返回
// return (
// "<p style='text-align:center;color:red;border-bottom:1px solid #DCDFE6;border-top:1px solid #DCDFE6;'>以下内容来源于网络,或者复制过来</p>" +
// content +
// "<p style='text-align:center;color:red;border-bottom:1px solid #DCDFE6;border-top:1px solid #DCDFE6;'>以上内容来源于网络,或者复制过来</p>"
// );
return content;
};
editor.customConfig.linkImgCallback = function (url) {
console.log(url); // url 即插入图片的地址
};
editor.customConfig.linkCheck = function (text, link) {
console.log(text); // 插入的文字
console.log(link); // 插入的链接
return true; // 返回 true 表示校验成功
// return '验证失败' // 返回字符串,即校验失败的提示信息
};
// 自定义配置颜色(字体颜色、背景色)
editor.customConfig.colors = [
"#000000",
"#eeece0",
"#1c487f",
"#4d80bf",
"#c24f4a",
"#8baa4a",
"#7b5ba1",
"#46acc8",
"#f9963b",
"#ffffff"
];
// 表情面板可以有多个 tab ,因此要配置成一个数组。数组每个元素代表一个 tab 的配置
editor.customConfig.emotions = [
{
// tab 的标题
title: "默认",
// type -> 'emoji' / 'image'
type: "image",
// content -> 数组
content: [
{
alt: "[坏笑]",
src:
"http://img.t.sinajs.cn/t4/appstyle/expression/ext/normal/50/pcmoren_huaixiao_org.png"
},
{
alt: "[舔屏]",
src:
"http://img.t.sinajs.cn/t4/appstyle/expression/ext/normal/40/pcmoren_tian_org.png"
}
]
},
{
// tab 的标题
title: "emoji",
// type -> 'emoji' / 'image'
type: "emoji",
// content -> 数组
content: ["😀", "😃", "😄", "😁", "😆"]
}
];
// 自定义字体
editor.customConfig.fontNames = [
"宋体",
"微软雅黑",
"Arial",
"Tahoma",
"Verdana"
];
// 隐藏“网络图片”tab
editor.customConfig.showLinkImg = false;
// 下面两个配置,使用其中一个即可显示“上传图片”的tab。但是两者不要同时使用!!!
editor.customConfig.uploadImgShowBase64 = true; // 使用 base64 保存图片不建议使用这种,我只是图个方便
// editor.customConfig.uploadImgServer = '/upload' // 上传图片到服务器
editor.create();
this.editor = editor;
},
watch: {
//监听value的变化,用于父组件值改变后子组件属性值的改变与富文本编辑器内容的改变
value: {
immediate: true,
handler(val) {
if (this.editor) {
this.editorContent = val;
this.editor.txt.html(val);
}
}
}
}
}
</script>
<style lang="less">
#editorElem {
.w-e-text-container {
// 文本框里面的层级调低
z-index: 1 !important;
}
.w-e-toolbar {
// 给工具栏换行
flex-wrap: wrap;
}
.w-e-menu {
// 最重要的一句代码
z-index: auto !important;
.w-e-droplist {
// 触发工具栏后的显示框调高
z-index: 2 !important;
}
}
}
</style>
<style scoped>
/* table 样式 */
table {
border-top: 1px solid #ccc;
border-left: 1px solid #ccc;
}
table td,
table th {
border-bottom: 1px solid #ccc;
border-right: 1px solid #ccc;
padding: 3px 5px;
}
table th {
border-bottom: 2px solid #ccc;
text-align: center;
}
/* blockquote 样式 */
blockquote {
display: block;
border-left: 8px solid #d0e5f2;
padding: 5px 10px;
margin: 10px 0;
line-height: 1.4;
font-size: 100%;
background-color: #f1f1f1;
}
/* code 样式 */
code {
display: inline-block;
*display: inline;
*zoom: 1;
background-color: #f1f1f1;
border-radius: 3px;
padding: 3px 5px;
margin: 0 3px;
}
pre code {
display: block;
}
/* ul ol 样式 */
ul,
ol {
margin: 10px 0 10px 20px;
}
.editor {
width: 100%;
min-height: 300px;
background-color: #fff;
}
</style>
4.父组件中使用
js部分
1.引入自定义组件
import wangEditor from "../../../../elements/wangeditor/index"
2.声明组件,在components中声明wangEditor
components:{
wangEditor
}
dom使用
html
<wang-editor :value="introduce" ref="myEditor"></wang-editor>
3.获取编辑框的数据
let value= this.$refs.myEditor.getContent();
完
更多推荐
已为社区贡献5条内容
所有评论(0)