我是靠谱客的博主 风趣胡萝卜,最近开发中收集的这篇文章主要介绍在vue中使用wangEditor富文本编辑框,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

npm安装

npm i wangeditor --save

创建wangEditor.vue

<template>
<div class="home">
<div id="demo1"></div>
</div>
</template>
<script>
// 引入 wangEditor
import WangEditor from 'wangeditor'
export default {
props: ['content'],
data () {
return {
editor: null,
editorData: ''
}
},
mounted () {
const editor = new WangEditor('#demo1')
// 配置 onchange 回调函数,将数据同步到 vue 中
editor.config.onchange = (newHtml) => {
this.editorData = newHtml
this.$emit('change', {val: this.editorData})
}
// 创建编辑器
editor.create()
// 初始化
editor.txt.html(this.content)
this.editor = editor
},
methods: {
getEditorData () {
// 通过代码获取编辑器内容
let data = this.editor.txt.html()
alert(data)
}
},
beforeDestroy () {
// 调用销毁 API 对当前编辑器实例进行销毁
this.editor.destroy()
this.editor = null
}
}
</script>
<style>
.home {
width: 40vw;
margin: auto;
position: relative;
}
</style>

父组建调用

<template>
<div>
<editor-bar :content="this.content" @change="change"></editor-bar>
</div>
</template>
<script>
import EditorBar from '@/components/wangEditor.vue'
export default {
components: { EditorBar },
data () {
return {
content: ''
}
},
created () {
this.content = this.e.rows.content
},
methods: {
change (val) {
this.content = val.val
}
}
}
</script>

最后

以上就是风趣胡萝卜为你收集整理的在vue中使用wangEditor富文本编辑框的全部内容,希望文章能够帮你解决在vue中使用wangEditor富文本编辑框所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(38)

评论列表共有 0 条评论

立即
投稿
返回
顶部