1.7.9 • Published 4 months ago
j2u v1.7.9
J2U
JSON Schema based form generator built with vue 3
Installation
yarn add j2u # npm i j2u
Basic Usage
<JsonSchema :schema="schema" v-model="value"/>
schema = {
type: 'object',
properties: {
aaa: { type: 'string', minLength: 1 },
bbb: { type: 'boolean' },
ccc: { type: 'string', enum: ['1', '2', '3'] },
ddd: {
type: 'object',
title: '',
properties: {
a1: { type: 'string', minLength: 1, maxLength: 5 },
b2: { type: 'boolean', default: true },
ddd: {
type: 'object',
properties: {
a1: { type: 'string', default: 'aaa' },
b2: { type: 'boolean' }
}
}
}
}
}
}
Credits
- inspired by vue-jsonschema-form and ncform
1.7.9
4 months ago
1.7.8
4 months ago
1.7.7
4 months ago
1.7.6
9 months ago
1.7.5
11 months ago
1.7.4
1 year ago
1.7.3
1 year ago
1.7.2
1 year ago
1.7.1
1 year ago
1.7.0
1 year ago
1.6.0
1 year ago
1.5.2
2 years ago
1.5.1
2 years ago
1.5.0
2 years ago
1.4.1
2 years ago
1.4.0
2 years ago
1.3.3
2 years ago
1.3.2
2 years ago
1.3.1
2 years ago
1.3.0
2 years ago