gh-form-generator-elementui
v1.0.0
Published
基于 Vue3 、ElementPlus、JsonSchema快速构建一个带完整校验的form表单
Downloads
3
Readme
@lljj/vue3-form-element
基于 Element Plus 、Vue3、 JSON Schema 生成表单
通过 @lljj/vue3-form-core 适配 ElementPlus 库
安装
## npm
npm install --save @lljj/vue3-form-element
## yarn
yarn add @lljj/vue3-form-element
使用
<VueForm
v-model="formData"
:schema="schema"
>
</VueForm>
// 使用
import VueForm from '@lljj/vue3-form-element';
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