码迷,mamicode.com
首页 > Web开发 > 详细

json数据编辑器

时间:2021-04-24 11:50:04      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:span   let   竖线   nts   lse   Edito   content   fonts   vue   

1、安装依赖

npm install vue2-ace-editor

2、导入依赖,注册为子组件

import Editor from ‘vue2-ace-editor‘
//在页面组件中通过components ,注册导入的组件
components:{
			Editor
		}

3、组件使用

<editor
  height="500" 
  width="500"
  ref="editor" 
  :content="content.json" 
  v-model="content.json"
  :options="{
      enableBasicAutocompletion: true,
      enableSnippets: true,
      enableLiveAutocompletion: true,
      tabSize:6,
      fontSize:14,
      showPrintMargin:false,   //去除编辑器里的竖线
   }"
   :lang="‘json‘"
   @init="editorInit">
</editor>

init方法

editorInit(){
                 require(‘brace/theme/chrome‘)
                 require(‘brace/ext/language_tools‘) 
                 require(‘brace/mode/yaml‘)
                 require(‘brace/mode/json‘)    
                 require(‘brace/mode/less‘)
                 require(‘brace/snippets/json‘)
            }

 

 

json数据编辑器

标签:span   let   竖线   nts   lse   Edito   content   fonts   vue   

原文地址:https://www.cnblogs.com/XXQQ123/p/14693040.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!