field

A field is an object and must have a component property.

Type

Object

Properties

* required

Example

  data() {
    return {
      uiSchema: [{
        // component is required
        component: 'div'
        // other optional properties
        fieldOptions: {
          domProps: {
            innerHTML: 'This is the first component!'
          }
        }
      }]
    }
  }

Last updated