Skip to content

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

NameType
disabled?boolean
modelValueT

Type Declaration

NameType
onUpdate:modelValue()(value: T) => void

Type Parameters

Type ParameterDefault typeDescription
TanyThe type of the field value