基于 bkui-vue 3.0组件库和JSON Schema协议的表单渲染器
基于 bkui-vue 3.0组件库和JSON Schema协议的表单渲染器
- 0.0.x 版本 依赖蓝鲸bk-magic-vue 2.0组件库,需要项目自己安装
- 1.x.x 版本 依赖蓝鲸bkui-vue 3.0组件库
``shell`
npm i @blueking/bkui-form
`vue`
ref="BkSchemaForm"
:schema="schema"
:layout="layout"
:rules="rules"
:form-type="formType"
:context="context">
vue2 版本的schema中的ui:components下的props属性需要放到上一层级
vue2 版本schema 写法
``
{
"uri": {
"title": "Uri",
"type": "string",
"format": "uri",
"ui:component": {
"props": {
"type": "url"
}
}
}
}
vue3 以上版本schema 写法
```
{
"uri": {
"title": "Uri",
"type": "string",
"format": "uri",
"ui:component": {
"type": "url"
}
}
}