wangeditor轻量级富文本编辑器
作者:
青争小台 | 来源:发表于
2020-03-15 21:17 被阅读0次<template>
<div class="sendingNotice">
<p class="label">请输入通知标题</p>
<div id="editor" class="editor" />
<el-button type="primary" @click="merchantSendnotific('NZL')">发送</el-button>
</div>
</template>
<script>
import E from 'wangeditor'
export default {
name: 'SendingNotice',
data() {
return {
content: null
}
},
mounted() {
const editor = new E('#editor')
editor.customConfig.onchange = (html) => {
this.content = html
}
editor.customConfig.zIndex = 10
editor.create()
},
methods: {
merchantSendnotific(type) {
console.log(111,this.content)
}
}
}
</script>
本文标题:wangeditor轻量级富文本编辑器
本文链接:https://www.haomeiwen.com/subject/rsgbehtx.html
网友评论