销毁编辑器

执行 editor.destroy() 可以销毁编辑器实例。在 Vue2.x 中使用销毁 API ,代码如下。

  1. // 用于 Vue2.x
  2. import E from 'wangeditor'
  3. export default {
  4. data() {
  5. return {
  6. editor: null
  7. }
  8. },
  9. mounted() {
  10. // 创建编辑器
  11. this.editor = new E(`#demo`)
  12. this.editor.create()
  13. },
  14. beforeDestroy() {
  15. // 销毁编辑器
  16. this.editor.destroy()
  17. this.editor = null
  18. }
  19. }