Attributes

Control the behavior of the Vuetify-form-base component using the following attributes

Supported Attributes in 'v-form-base'

<!-- default id="form-base" -->
<v-form-base 
  id="my-form-base"
  :model="Model"
  :schema="Schema"
  :row="rowAttributesForLayoutControl"
  :col="globalColDefinition"  
  @input="handleInput"
 />
<!-- deprecated -->
<v-form-base
  :value="Model"
  :flex="globalColDefinition"  
/>

In addition or instead of the @input event handler you can use all available events

Last updated