JsonEditor.vue 270 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 <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>