可以根据定义的json的schema,编辑json对象。在vue.js中使用<json-editor>。项目地址:yourtion/vue-json-ui-editor: Edit JSON in UI form with JSON Schema and Vue.js (github.com)
安装npm install vue-json-ui-editor --save
使用:
<json-editor ref="JsonEditor" :schema="schema" v-model="model">
<button @click="submit">submit</button>
<button @click="reset">Reset</button>
</json-editor>
然后这样就可以了
网友评论