乐趣区

关于javascript:codeMirror使用销毁codeMirror组件

文章只是记录应用该插件的过程:

<template>
    <div class="json-editor">
    <textarea ref="textarea" />
  </div>
</template>
/**
导入对应的包
import .....
**/
// 创立
this.jsonEditor = CodeMirror.fromTextArea(this.$refs.textarea, {
      lineNumbers: true,
      mode: 'application/json',
      gutters: ['CodeMirror-lint-markers'],
      theme: 'rubyblue',
      lint: true,
      readOnly: true // 只读
    })

// 销毁
this.jsonEditor.getWarpperElement().parentNode.removeChild(this.jsonEditor.getWarpperElement())
退出移动版