j2u
TypeScript icon, indicating that this package has built-in type declarations

1.7.3 • Public • Published

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

Package Sidebar

Install

npm i j2u

Weekly Downloads

18

Version

1.7.3

License

MIT

Unpacked Size

384 kB

Total Files

43

Last publish

Collaborators

  • morgbn