Blame view

src/components/JsonEditor.vue 355 Bytes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<!--
 * @Description: 
 * @Autor: renchao
 * @LastEditTime: 2023-04-04 09:52:39
-->
<template>
  <el-input type="textarea" :rows="6" disabled placeholder="配置参数" v-model="resultInfo">
  </el-input>
</template>
<script>
// 引入json编译器
export default {
  props: {
    resultInfo: {
      type: String,
      default: ''
    }
  }
}
</script>