项目地址:cloydlau/json-editor-vue: JSON editor & viewer for Vue 2.6/2.7/3 & Nuxt 2/3. (github.com)
支持vue2和vue,支持节点创建复制,基本符合要求。
在vue 2.7使用:
npm i json-editor-vue vanilla-jsoneditor
<template>
<JsonEditorVue v-model="value" v-bind="{/* local props & attrs */}" />
</template>
<script setup>
import JsonEditorVue from 'json-editor-vue'
const value = ref()
</script>
这样就行了
网友评论