API    $invalid  Type  Description booleanIndicates the state of validation for given form group object. Becomes true when any of it's child validators returns a falsy value. In case of validation groups, all grouped validators are considered. 
  $dirty  Type  Description booleanRepresents if any child inputs of the form group has been touched. Can be set manually using the touch() and reset() functions. 
  $error  Type  Description booleanIndicates if the form is both $invalid and $dirty. Use as a convenient combination for messaging. 
  $clean  Type  Description functionUse to remove all vueactive form attributes. This will give you a clean object that can be used to submit the form to a database or the like. 
  $reset  Type  Description functionUse to reset the form input values back to the $originalValue the form started with and reset all $dirty's back to false. 
  $touch  Type  Description functionUse to set $dirty on the top level form and all its children. 
   $invalid  Type  Description booleanIndicates the state of validation for given input. Becomes true when any of it's validators returns a falsy value. In case of validation groups, all grouped validators are considered. 
  $dirty  Type  Description booleanRepresents if the input has been touched. 
  $error  Type  Description booleanIndicates if the input is both $invalid and $dirty. Use as a convenient combination for messaging. 
  $originalValue  Type  Description string number booleanKeeps a copy of the original value the input was initialized with. Used with the reset function on a form group. 
  value  Type  Description string number booleanReactive value to be used with v-model. 
 Last Updated:  7/2/2021, 6:25:49 PM