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

Has some built-in utility to get only changed fields using useForm? actually workaround ```js const { handleSubmit, isFieldDirty, values } = useForm() const onSubmit = handleSubmit( (formBody) => { const...

I would like to request to add the UI library "Kendo Vue UI" https://www.telerik.com/kendo-vue-ui I think it would be great to have this

### What happened? After upgrading Vee-Validate from version 4.1.6 to 4.15.0, using resetField({ value: undefined }) prevents the form from becoming valid again, even after entering a new valid value....

### What happened? This is my first Github issue, so please bear with me... The keys in the Error object don't match their TS definition. Lets say I have the...

v5

### What happened? I'm unable to resolve a typescript error showing on the @submit. The specific error is: ``` Type '(values: { name: string; }) => void' is not assignable...

### What happened? i have radiobutton component something like this ``` ``` I have multiple radiobuttons in 1 page. on veevalidate "vee-validate": "4.11.8", with same name i get errors[0] for...

### What happened? I'm using vee-validate with Zod on my Nuxt 3 application. I have an array of objects that represents some items. Here is my Zod validation model :...

### What happened? I have this example using yup: https://stackblitz.com/edit/vee-validate-v4-hoc-multi-step-form-eky2u2as?file=src%2FApp.vue And this using zod: https://stackblitz.com/edit/vee-validate-v4-hoc-multi-step-form-meu1mnvu?file=src%2FApp.vue You will see that both examples are exactly the same. However the value for the...

### What happened? When running snapshot tests for a login form using vee-validate with shadcn-vue in a Nuxt 3 application, the validation error messages are not displayed in the snapshot....

As of this moment, custom validator functions do not work with field arrays. ``` const validationSchema = { 'fieldArray.*': validatorFn } const { meta, errors, setErrors, handleSubmit, setFieldValue } =...