Skip to content
  • This project
    • Loading...
  • Sign in

bdc / bdcjg-web

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • bdcjg-web
  • src
  • components
  • JsonEditor.vue
  • renchao@pashanhoo.com's avatar
    style:监管弹框样式的整改 · 9aedfe53
    9aedfe53 Browse Files
    renchao@pashanhoo.com committed 2023-04-04 11:09:18 +0800
JsonEditor.vue 355 Bytes
Raw Blame History Permalink
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>