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? Hi there! When I want to use the zod schema declaration to add a custom label to it (with `z.string().label('My label')`) like in the docs https://vee-validate.logaretm.com/v4/guide/composition-api/custom-inputs#custom-field-labels, it...

**Is your feature request related to a problem? Please describe.** Currently using the `useResetForm()` composable does not allow you to pass the `force: true` option, this means you cannot overwrite...

🔎 __Overview__ This PR allows transforms to be sent through as the submitted value when the transform is used in `useField` and not as a high-level object schema. 🤓 __Code...

### What happened? Typo of Estonian word väiksem in https://github.com/logaretm/vee-validate/blame/v2/locale/et.js line 31 max_value: (field, [max]) => `${capitalizeFirstLetter(field)} peab olema ${max} või väisem`, Correct word instead of "väisem" should be: "väiksem"...

### What happened? When you have a field of type checkbox the validation rule(s) get called twice instead of once (like with a text input) ### Reproduction steps 1. open...

### What happened? Called `resetForm()` on a multi-step form does not reset the form, or only resets the last step. ### Reproduction steps 1. Create a multi-step form as per...

**Is your feature request related to a problem? Please describe.** Inertia has also a javascript function called useForm() I'm like to use Vue3,Inertia and PrimeVue for my project and looking...

### What happened? Entering 0.0 reverts back to 0. I'm using it in a pricing field so 0.00 is a valid entry. ### Reproduction steps 1. Add input field type...

🐛 bug

i would like it if the validateOnBlur would work with useField and next to touched also validate the field i tried these https://vee-validate.logaretm.com/v4/api/configuration#config-options options they dont work. it doesn't listen...

### What happened? For example, I have this form: ``` interface EditVersionModalForm { name: string name2: string name3: string } const useFormOptions = { validationSchema: { name: requiredField, }, initialValues:...