Blame view

src/components/JsonEditor.vue 477 Bytes
yangwei committed
1
<template>
任超 committed
2
  <el-input type="textarea" :rows="6" disabled placeholder="配置参数" v-model="resultInfo">
3
  </el-input>
yangwei committed
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
</template>
<script>
// 引入json编译器
export default {
  props: {
    resultInfo: {
      type: String,
      default: ''
    }
  }
}

</script>

<style scoped lang="scss">
/deep/.el-textarea__inner {
任超 committed
20
  height: 67vh !important;
任超 committed
21
  border: none !important;
yangwei committed
22 23 24 25 26
  background-color: #08346F !important;
  color: #ffffff;
  border: none !important;
}
</style>