&l">
当前位置:   article > 正文

vue3.0实现jsoneditor组件

vue3.0实现jsoneditor组件

踩了很多坑最后写出来了,需要props里加属性自己加,css部分也是很关键的内容
引用后可以在父组件用class设置height
很多处理的灵感来源于vue2.0项目vue-json-editor的代码,原项目代码还是写的很精彩的
安装命令:npm install jsoneditor --save
原项目文档:https://github.com/josdejong/jsoneditor

<template>
  <div>
    <div class="json" />
  </div>
</template>

<script>
import JSONEditor from 'jsoneditor';

export default {
  props: {
    name: String,
    modelValue: {
      type: [String, Number, Object, Array],
      default: () => {
        return {};
      }
    }
  },
  data() {
    return {
      jsonEditor: null,
      internalChange: false
    }
  },
  mounted() {
    this.init();
  },
  watch: {
    modelValue: {
      handler(json) {
        if (!this.internalChange) {
          this.setValue(json);
        }
      }
    }
  },
  methods: {
    init() {
      let self = this;
      this.jsonEditor = new JSONEditor(
          self.$el.querySelector(".json"), {
            mode: 'code',
            modes: ['code', 'view', 'tree'],
            indentation: 4,
            name: this.name,
            mainMenuBar: true,
            onModeChange() {
              // 去除作者信息
              if (document.getElementsByClassName('jsoneditor-poweredBy').item(0)) {
                document.getElementsByClassName('jsoneditor-poweredBy').item(0).remove();
              }
            },
            onChange() {
              self.internalChange = true;
              self.$emit('update:modelValue', self.jsonEditor.getText());
              // 防止双向绑定重复刷新数据
              self.$nextTick(function () {
                self.internalChange = false;
              });
            }
          }, self.modelValue);
      // 去除作者信息
      document.getElementsByClassName('jsoneditor-poweredBy').item(0).remove();
    },
    setValue(jsonStr) {
      if (this.jsonEditor) {
        this.jsonEditor.set(jsonStr ? JSON.parse(jsonStr) : '');
      }
    }
  }
};
</script>

<style>
@import '~jsoneditor/dist/jsoneditor.min.css';

.json {
  height: 100%;
}

.jsoneditor {
  border: thin solid #409EFF;
}

.jsoneditor-menu {
  background-color: #409EFF;
}

.ace-jsoneditor {
  min-height: 50px;
}
</style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93

引入,省略import部分

<json-editor class="json" name="body" v-model="bodyJson"></json-editor>
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/1001640
推荐阅读
相关标签
  

闽ICP备14008679号