mirror of
https://github.com/Ssl1S/json-schema-editor-vue.git
synced 2025-12-30 01:37:55 +08:00
a7747bf2296e863a8c01678abbaf920887559856
json-schema-editor-vue
A json-schema editor of high efficient and easy-to-use, base on Vue
Usage
npm install json-schema-editor-vue
import JsonSchemaEditor from '../packages/index'
Vue.use(JsonSchemaEditor)
<template>
<div id="app">
...
<json-schema-editor :value="tree"/>
...
</div>
</template>
<script>
export default {
name: 'App',
data() {
return {
tree:
{
root: {
type: "object"
}
}
}
}
}
</script>
Don't forget to star if it helped!
如果对您有帮助,别忘记给个星哦
Description
Languages
JavaScript
99.3%
Vue
0.6%
HTML
0.1%

