vee-validate icon indicating copy to clipboard operation
vee-validate copied to clipboard

✅ Painless Vue forms

Results 246 vee-validate issues
Sort by recently updated
recently updated
newest added

### What happened? Setting the values to false has no effect: ``` import { configure } from 'vee-validate'; configure({ validateOnChange: false, validateOnInput: false, validateOnModelUpdate: false, validateOnBlur: false, }); ``` I...

### What happened? I made a relatively simple Array input component with `useFieldArray` and each row has a `delete` button to remove the row from the input if desired. ```html...

### What happened? I am attempting to create a wrapper component (CheckboxGroup) to group checkboxes with the same name and treat them as a single unit. The issue I'm encountering...

### What happened? ```javascript const { handleSubmit, values, errors, } = useForm( { validationSchema: toTypedSchema(schema), initialValues: { people:[{name: 'John'}] } }) ``` According to the types the errors should be...

👕 TypeScript

### What happened? When I submit a form, it is validated and an error is displayed, but the input is not immediately reflected. How can I make it reflect immediately?...

For example,i have a button,with a function get a fieldName addField(name:string){ } or deleteField(name:string){ } but this field is not a Array how to make my form like {name:xxx,email:xxxx}

### What happened? I'm using the `.transform()` method to edit the data to be sent to the form submit function. It works well for fields declared with `defineField()` method but...

### What happened? I use nuxt3 and install vee-validate with `pnpm add @veevalidate/nuxt` I want to use Composition API (because I use 3rd party UI library). and I following example...

🔎 __Overview__ This PR fixes an issue where removed keys of objects in field values don't mark the form as dirty, because the `isEqual` method is not commutative. Please refer...

### What happened? Currently, if a value is changed to an empty object (`{}`), the `isEqual` util automatically assumes nothing has changed. https://github.com/logaretm/vee-validate/blob/cdf0a803c642e85f159603998a623deb91c25fb2/packages/vee-validate/src/utils/assertions.ts#L164-L165 I think checking both objects and comparing...