JsonEditor.vue 468 Bytes
<template>
  <el-input type="textarea" :rows="6" placeholder="配置参数" v-model="resultInfo">
  </el-input>
</template>
<script>
// 引入json编译器
export default {
  props: {
    resultInfo: {
      type: String,
      default: ''
    }
  }
}

</script>

<style scoped lang="scss">
/deep/.el-textarea__inner {
  height: 72vh !important;
  border: none !important;
  background-color: #08346F !important;
  color: #ffffff;
  border: none !important;
}
</style>