@lljj/vue-json-schema-form
TypeScript icon, indicating that this package has built-in type declarations

1.19.0 • Public • Published

@lljj/vue-json-schema-form

基于 Element Ui 、Vue2、 JSON Schema 生成表单

通过 @lljj/vue2-form-core 适配 ElementUi 库

安装

## npm
npm install --save @lljj/vue-json-schema-form

## yarn
yarn add @lljj/vue-json-schema-form

使用

<VueForm
    v-model="formData"
    :schema="schema"
>
</VueForm>
//  使用
import VueForm from '@lljj/vue-json-schema-form';

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

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
1.19.0179latest

Version History

VersionDownloads (Last 7 Days)Published
1.19.0179
1.18.03
1.17.13
1.17.01
1.14.22
1.14.012
1.13.01
1.12.21
1.12.11
1.12.01
1.11.01
1.10.01
1.9.51
1.9.41
1.9.3140
1.9.21
1.9.13
1.9.02
1.7.01
1.6.31
1.6.21
1.6.11
1.6.01
1.5.01
1.4.03
1.3.01
1.2.11
1.2.01
1.1.31
1.1.21
1.1.01
1.0.21
0.6.11
0.5.01
0.4.11
0.4.01
0.3.01
0.2.21
0.2.11
0.1.31
0.1.21
0.1.11
0.1.01
0.0.161
0.0.151
0.0.141
0.0.131
0.0.121
0.0.111
0.0.101
0.0.91
0.0.81
0.0.52
0.0.41
0.0.31
0.0.21
0.0.11

Package Sidebar

Install

npm i @lljj/vue-json-schema-form

Weekly Downloads

396

Version

1.19.0

License

Apache-2.0

Unpacked Size

1.28 MB

Total Files

17

Last publish

Collaborators

  • lljj