0
点赞
收藏
分享

微信扫一扫

vue中使用wangEditor富文本编辑器

Java旺 2022-01-16 阅读 121

首先npm 安装

npm i wangeditor --save

创建一个组件来显示富文本编辑器,比如Wangeditor.vue

<template>
	<div class="home">
		<h3>wangEditor with vue</h3>
		<div id="demo1"></div>
		<button type="button" class="btn" @click="getEditorData">获取当前内容</button>
		<h3>内容预览</h3>
		<textarea name="" id="" cols="170" rows="20" readonly v-model="editorData"></textarea>
	</div>
</template>
<script>
	//引入 wangEditor
	import wangEditor from 'wangeditor'
	export default {
		name: 'Wangeditor',
		data() {
			return {
				editor: null,
				editorData: ''
			}
		},
		mounted() {
			const editor = new wangEditor('#demo1')
			//配置 onchange 回调函数,将数据同步到vue中
			editor.config.onchange = (newhtml) => {
				this.editorData = newhtml
			}
			//创建编辑器
			editor.create()
			this.editor = editor
		},
		methods:{
			getEditorData() {
					//通过代码获取编辑器内容
					let data = this.editor.txt.html()
					alert(data)
				},
				beforeDestroy() {
					//调用销毁 API 对当前编辑器实例进行销毁
					this.editor.destroy()
					this.editor = null
				}
		}

	}
</script>
<style scoped>
	.home {
		width: 1200px;
		margin: auto;
		position: relative;
	}

	.btn {
		position: absolute;
		right: 0;
		top: 0;
		padding: 5px 10px;
		cursor: pointer;
	}

	h3 {
		margin: 30px 0 15px;
	}
</style>

然后就可以根据自己的需求使用了!!!

举报

相关推荐

0 条评论