boolean
result of this validation, any errors that may have occurred and a reference to the VFG component which triggered the validation.isValid
will contain a boolean
value indicating whether the form is valid, true
indicates the the validation succeeded. false
indicates that it failed, and the errors array will contain any error messages from the validation rules.@validated
(v-validated
) event on the <vue-form-generator />
component.newVal
is the value that was just updated, and schema
is a reference to the model's property name found in the field schema. schema
will only contain the individual property name, and not the full schema. This allows you to identify which field was just updated.@model-updated
(v-model-updated
) event on the <vue-form-generator />
component.