0.1.6 • Published 3 years ago

wl-codemirror-editor v0.1.6

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago
npm install wl-json-schema
import wlJsonSchema from 'wl-json-schema'
Vue.use(wlJsonSchema)
<template>
  <div id="app">
    ...
    <wl-json-schema :value="tree"/>
    ...
  </div>
</template>

<script>
export default {
  name: 'App',
  data() {
    return {
      tree:
      {
        root: {
          type: "object"
        }
      }
    }
  }
}
</script>

json-schema-editor-vue属性说明如下:

属性说明类型是否必须默认值
value传入一个默认的树节点,用来接收编辑后的json schema结果Object
disabled节点名称不可编辑Booleanfalse
disabledType节点类型不可选择Booleanfalse
root是否是根节点Booleantrue
tipDisabled是否禁用提示Booleanfalse
delay提示信息延迟时间(毫秒)Number1000

版本说明

0.1.6

1.增加控制是否显示提示功能