wangeditor轻量级富文本编辑器
2020-03-15 本文已影响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>