Fields
A field in the schema defines an input element to a value of model. For example, if you want to edit the
model.selections
value with a select field, you have to create a field with select
type, what looks like this:{
type: "select",
label: "Selections",
model: "selections"
},
Each field has its own options, so be sure to check out their documentations.
For example, input field need an
inputType
to be specified as well.{
type: "input",
inputType: "text",
label: "Name",
model: "name"
},
These fields are available in the core version of VueFormGenerator.