猜测与页面重新渲染有关 你可以尝试在重新渲染dom元素后挂载钩子函数后再禁用编辑器 mounted() { // 模拟 ajax 请求,异步渲染编辑器 setTimeout(() => { this.html = "模拟 Ajax 异步设置内容 HTML"; this.$nextTick(() => { this.editor.disable(); }) }, 1500); },
阅读量:1
点赞量:0