wangEditor是基于javascript和css开发的 Web富文本编辑器, 轻量、简洁、易用、开源免费。
在我们实际项目上还是比较频繁应用到的,下面出个案例供大家参考学习…
wangEditor文档:https://www.wangeditor.com/
富文本编辑器截图:



<!--富文本编辑器。http://www.wangeditor.com/
使用示例:
<AppEditor v-model="content"></AppEditor>
-->
<template>
<article ref="editor" class="AppEditor-root"></article>
</template>
<script>
const E = require('wangeditor');
export default {
name: 'AppEditor',
model: {
prop: 'value',
event: 'update:value',
},
props: {
// value值,v-model绑定
value: {type: String, default: ''},
// 菜单选项
menus: {
type: Array,
default(){
return [
'bold', // 粗体
'italic',//斜体
'underline',//下划线
'fontSize', // 字号
'strikeThrough',//删除线
'image', // 插入图片
'undo', // 撤销
// 'fontName', // 字体
// 'italic', // 斜体
// 'underline', // 下划线
// 'strikeThrough', // 删除线
// 'foreColor', // 文字颜色
// 'backColor', // 背景颜色
// 'link', // 插入链接
// 'list', // 列表
// 'justify', // 对齐方式
// 'quote', // 引用
// 'emoticon', // 表情
// 'image', // 插入图片
// 'table', // 表格
// 'video', // 插入视频
// 'code', // 插入代码
// 'undo', // 撤销
// 'redo', // 重复
];
},
},
},
data(){
return {
editor: {}, // 编辑器对象
_value: '', // 内容备份,用于watch时候判断,只在编辑器输入时改变
};
},
computed: {},
mounted(){
this.initEditor();
},
watch: {
value(newValue, oldValue){
// 编辑器onchange更改的不处理,只处理父组件传来的,防止文字回退bug
if (newValue != this._value) {
this.editor.txt.html(newValue);
}
},
},
methods: {
initEditor(){
let editor = new E(this.$refs.editor);
Object.assign(editor.customConfig, {
menus: this.menus,
zIndex: 100,
height: 200,
pasteFilterStyle: false,
onchange: (html) => {
this._value = html; // 更新 _value
this.$emit('update:value', html); // 更新 value
},
customUploadImg:((file, insert)=> {
if(this.$utils.isEmpty(file)){
return;
}
const msg = this.$Message.loading({
content: '亲,图片正在拼命地上传中,请稍等...',
duration: 0
});
var params = new FormData();
params.append('img', file[0]);
this.$api.post('/synthesis/crm/picture/pictureUpload',params).then(res => {
insert(res.data.imgUrl)
setTimeout(msg, 0);
this.$Message.success('上传成功');
})
}),
uploadImgHooks:{
customInsert: function (insertImg, result, editor) {
insertImg(result.url)
}
}
});
editor.create();
editor.txt.html(this.value); // 针对数据异步获取的这里无法立即绑定,在watch判断处理
this.editor = editor;
},
},
};
</script>
<style scoped lang="scss">
.AppEditor-root{ border: 1px solid #f0f0f0; height: 400px !important;
/deep/ .w-e-toolbar{ border: none !important; border-bottom: 1px solid #f0f0f0 !important; background-color: #fff !important;
}
/deep/ .w-e-text-container{ height: calc(100% - 43px) !important; border: none !important; z-index:1 !important;
.w-e-text{ height: 100%; overflow-y: auto !important;}
}
}
</style>
到此这篇关于Vue中使用wangeditor富文本编辑的问题的文章就介绍到这了,更多相关wangeditor富文本编辑内容请搜索小牛知识库以前的文章或继续浏览下面的相关文章希望大家以后多多支持小牛知识库!
本文向大家介绍Vue中Quill富文本编辑器的使用教程,包括了Vue中Quill富文本编辑器的使用教程的使用技巧和注意事项,需要的朋友参考一下 在项目中需要引入Quill文本编辑器,并且根据需求,需要自定义字体选项、图片拖拽上传和改变大小,所以根据Quill官网系统学习了一下,以下是我学习和研究的结果。 一、主题 Quill的富文本编辑器分为snow和bubble两种。 snow是有工具栏的,如下
本文向大家介绍Vue-Quill-Editor富文本编辑器的使用教程,包括了Vue-Quill-Editor富文本编辑器的使用教程的使用技巧和注意事项,需要的朋友参考一下 本文为大家分享了Vue Quill Editor富文本编辑器的具体使用方法,供大家参考,具体内容如下 先看效果图: 1、下载Vue-Quill-Editor 2、下载quill(Vue-Quill-Editor需要
本文向大家介绍vue富文本编辑器组件vue-quill-edit使用教程,包括了vue富文本编辑器组件vue-quill-edit使用教程的使用技巧和注意事项,需要的朋友参考一下 之前使用的富文本编辑器是uEditor,kindEditor,感觉不太方便。 近期项目vue单页面,就使用vue-quill-edit这个编辑器组件吧! 一、安装 cnpm install vue-quill-edit
本文向大家介绍vue如何安装使用Quill富文本编辑器,包括了vue如何安装使用Quill富文本编辑器的使用技巧和注意事项,需要的朋友参考一下 本文为大家记录了vue中安装使用Quill富文本编辑器的具体方法,供大家参考,具体内容如下 1、安装依赖 注:我在已有的vue项目中(含有已安装的依赖,即node_modules文件夹)直接进行安装并不成功,报错,没有截图,但是我没记错的话是显示"项目名\
Django集成UEditor (封装成应用) 百度富文本编辑器 http://ueditor.baidu.com/website/ 使用效果 测试环境 ubuntu 16.04 python3.5.2 django1.11.7 目前测试解决了出现的以下两个问题,都是python版本问题 error1 # name 'file' is not defined controller.py 68行
富文本编辑,又称为WYSIWYG(What You See Is What You Get,所见即所得)。在网页中编辑富文本内容,是人们对Web 应用程序最大的期待之一。虽然也没有规范,但在IE 最早引入的这一功能基础上,已经出现了事实标准。而且,Opera、Safari、Chrome 和Firefox 都已经支持这一功能。这一技术的本质,就是在页面中嵌入一个包含空HTML 页面的iframe。通
本文向大家介绍vue-quill-editor富文本编辑器简单使用方法,包括了vue-quill-editor富文本编辑器简单使用方法的使用技巧和注意事项,需要的朋友参考一下 文章刚开始先来介绍一下vue-quill-editor富文本编辑器的简单使用,具体操作步骤如下: 安装: main.js: 在需要使用的地方: 看到了一个网友分享的如何禁用vue-quill-editor 富文本编辑器,分享
本文向大家介绍详解Vue基于vue-quill-editor富文本编辑器使用心得,包括了详解Vue基于vue-quill-editor富文本编辑器使用心得的使用技巧和注意事项,需要的朋友参考一下 vue-quill-editor的guthub地址 ,现在市面上有很多的富文本编辑器,我个人还是非常推荐Vue自己家的vue-quill-deitor,虽然说只支持IE10+,但这种问题,帅给别人吧! 那