当前位置:   article > 正文

json-editor-vue3 Vue3 json编辑器使用

json-editor-vue3

首先安装json-editor-vue3

npm install json-editor-vue3 --save

在main.ts中加入,不加会报错

import "jsoneditor";

在需要引入的index.vue文件中

<json-editor-vue class="editor" v-model="dataFrom.remark"  @blur="remarkValidate"/>
  1. import JsonEditorVue from 'json-editor-vue3';
  1. // 校验json 编辑器内容格式
  2. const remarkValidate = async (editor) => {
  3. // if (!editor) return;
  4. const res = await editor.validate();
  5. // res 是错误列表,如果是空数组,则表示检测没有错误
  6. if(res.length != 0){
  7. ElMessage({
  8. message: '格式错误!',
  9. type: 'error',
  10. });
  11. editorFlag.value = false;
  12. }else {
  13. editorFlag.value = true;
  14. }
  15. };
'
运行

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/1001634
推荐阅读
相关标签
  

闽ICP备14008679号