zyqwst 7923fc9b6c --
2020-06-28 01:08:11 +08:00
--
2020-06-28 00:07:58 +08:00
--
2020-06-28 01:08:11 +08:00
2020-06-28 00:32:48 +08:00
--
2020-06-28 00:07:58 +08:00
2020-06-27 16:43:33 +08:00
---
2020-06-27 16:53:19 +08:00
2020-06-25 12:12:31 +08:00
2020-06-25 12:12:31 +08:00
2020-06-25 12:12:31 +08:00
2020-06-27 17:20:05 +08:00
2020-06-28 00:32:48 +08:00
2020-06-28 00:58:29 +08:00
2020-06-27 16:43:33 +08:00

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
No description provided
Readme Apache-2.0 7.3 MiB
Languages
JavaScript 99.3%
Vue 0.6%
HTML 0.1%