概述
1.在package.json 中引入 “wangeditor”: “^3.1.1”
2.编写 editor组件 源码如下
<template>
<div class="vue-editor">
<div ref="editor"></div>
</div>
</template>
<script>
import E from 'wangeditor';
export default {
props: {
content: String,
value: String,
menus: Array
},
data () {
return {
editor: null,
innerContent: '',
defaultMenus: [
'head', // 标题
'bold', // 粗体
'italic', // 斜体
'underline', // 下划线
'strikeThrough', // 删除线
'foreColor', // 文字颜色
'backColor', // 背景颜色
'list', // 列表
'justify', // 对齐方式
'quote', // 引用
'image', // 插入图片
'table', // 表格
'undo', // 撤销
'redo' // 重复
]
};
},
watch: {
'content' (newVal) {
if (this.editor) {
if (!!newVal && newVal !== this.innerContent) {
this.innerContent = newVal;
this.editor.txt.html(newVal);
} else if (!newVal) {
this.editor.txt.clear();
}
}
},
'value' (newVal) {
if (this.editor) {
if (!!newVal && newVal !== this.innerContent) {
this.innerContent = newVal;
this.editor.txt.html(newVal);
} else if (!newVal) {
this.editor.txt.clear();
}
}
}
},
methods: {
initialize () {
if (this.$el) {
this.editor = new E(this.$refs.editor);
if (this.menus && this.menus.length > 0) {
this.editor.customConfig.menus = this.menus;
} else {
this.editor.customConfig.menus = this.defaultMenus;
}
this.editor.customConfig.zIndex = 100;
this.editor.customConfig.uploadImgShowBase64 = true;
this.editor.customConfig.onchange = (html) => {
const text = this.editor.txt.text();
this.innerContent = html;
this.$emit('input', this.innerContent);
this.$emit('change', {
editor: this.editor,
html: html,
text: text
});
};
this.editor.create();
if (this.value || this.content) {
this.editor.txt.html(this.value || this.content);
}
this.$emit('ready', this.editor);
}
}
},
mounted () {
this.initialize();
},
beforeDestroy () {
this.editor = null;
}
};
</script>
<style scoped>
.vue-editor img {
max-width: 100%;
}
</style>
3.引用
1.<Editor v-model="content" @ready="editorReady"></Editor>
2. editorReady(editor) {
this.editor = editor;
this.content = this.editor.txt.text()
}
最后
以上就是任性钢笔为你收集整理的vue wangeditor 编辑器使用的全部内容,希望文章能够帮你解决vue wangeditor 编辑器使用所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复