修复富文本编辑器的问题

master
toesbieya 6 years ago
parent c9f77d8b92
commit b9ffb379c8
  1. 5
      vue/src/components/TinymceEditor/index.vue

@ -75,7 +75,8 @@
height: ctx.height,
init_instance_callback(editor) {
ctx.hasInit = true
editor.setContent(this.value || '')
editor.setContent(ctx.value || '')
editor.mode.set(ctx.readonly ? 'readonly' : 'design')
},
setup(editor) {
editor.on('keyup undo redo', () => {
@ -101,7 +102,7 @@
},
mounted() {
!this.readonly && this.init()
this.init()
},
beforeDestroy() {

Loading…
Cancel
Save