共计 401 个字符,预计需要花费 2 分钟才能阅读完成。
文章只是记录应用该插件的过程:
<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())
正文完
发表至: javascript
2022-10-10