1. 程式人生 > >vue中使用富文字外掛wangeditor

vue中使用富文字外掛wangeditor

import E from 'wangeditor' export default { name: 'editor', data () { return { editor: null, } }, props: { value: { default: "" } }, mounted() {; this.editor = new E(this.$refs.editor) this
.editor.customConfig.onchange = (html) => { // 獲取內容 this.$emit("input", html); } this.editor.create(); this.editor.txt.html(this.value); // 設定內容 } }