JsonEditor.vue 663 Bytes
<template>
  <el-input type="textarea" :rows="6" disabled placeholder="配置参数" v-model="resultInfo">
  </el-input>
</template>
<script>
// 引入json编译器
export default {
  props: {
    resultInfo: {
      type: String,
      default: ''
    }
  },
  data () {
    return {
      myValue: this.value,
    }
  },
  methods: {
    onJsonChange (value) {
    },
    onJsonSave (value) {
    }
  }
}

</script>

<style scoped lang="scss">
/* jsoneditor右上角默认有一个链接,加css去掉了 */
/deep/.el-textarea__inner {
  min-height: 73vh !important;
  background-color: #08346F !important;
  color: #ffffff;
  border: none !important;
}
</style>