Type Alias: ValidationFieldBindings<T>
ts
type ValidationFieldBindings<T> = {
disabled?: boolean;
modelValue: T;
} & VeeValidateStateVInputProps & {
onUpdate:modelValue: (value: T) => void;
};Complete field binding object for Vuetify form components with validation support. Contains all necessary props for two-way data binding, validation state, and event handling.
Type Declaration
| Name | Type |
|---|---|
disabled? | boolean |
modelValue | T |
Type Declaration
| Name | Type |
|---|---|
onUpdate:modelValue() | (value: T) => void |
Type Parameters
| Type Parameter | Default type | Description |
|---|---|---|
T | any | The type of the field value |