1.19.0 • Published 2 years ago
@lljj/vue3-form-ant v1.19.0
@lljj/vue3-form-ant
基于 Antd Vue 、Vue3、 JSON Schema 生成表单
通过 @lljj/vue3-form-core 适配 Ant Design Vue3 库
安装
## npm
npm install --save @lljj/vue3-form-ant
## yarn
yarn add @lljj/vue3-form-ant
使用
<VueForm
v-model="formData"
:schema="schema"
>
</VueForm>
// 使用
import VueForm from '@lljj/vue3-form-ant';
export default {
name: 'Demo',
components: {
VueForm
},
data() {
return {
formData: {},
schema: {
type: 'object',
required: [
'userName',
'age',
],
properties: {
userName: {
type: 'string',
title: '用户名',
default: 'Liu.Jun',
},
age: {
type: 'number',
title: '年龄'
},
bio: {
type: 'string',
title: '签名',
minLength: 10,
default: '知道的越多、就知道的越少',
'ui:options': {
placeholder: '请输入你的签名',
type: 'textarea',
rows: 1
}
}
}
}
};
}
};
License
Apache-2.0
1.19.0
2 years ago
1.18.0
2 years ago
1.17.1
2 years ago
1.17.0
2 years ago
1.14.2
3 years ago
1.14.0
3 years ago
1.13.1
3 years ago
1.13.0
3 years ago
1.12.2
3 years ago
1.12.1
3 years ago
1.12.0
3 years ago
1.11.0
3 years ago
1.9.5
4 years ago
1.10.0
4 years ago
1.9.4
4 years ago
1.9.3
4 years ago
1.9.2
4 years ago
1.9.1
4 years ago
1.9.0
4 years ago
1.7.0
4 years ago
1.6.4
4 years ago
1.6.3
4 years ago
1.6.2
4 years ago
1.6.1
4 years ago
1.6.0
4 years ago
1.5.0
4 years ago
1.4.0
4 years ago
1.3.0
4 years ago
1.2.1
4 years ago
1.2.0
4 years ago
1.1.3
4 years ago
1.1.2
4 years ago
1.1.0
4 years ago