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

✅ Painless Vue forms

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

### What happened? I don't understand how to set the value from props to useField. When trying to find out, I came across the maintainer's answer, [where he recommends using...

I wonder why you either forgot or purposely omitted to import the vee-validate components, it's really mind-nerving especially when the user is copy pasting your code in whole for trial...

Unfortunately, I introduced a breaking change in a type of Valibot v0.33.0. So I updated the dependencies.

### What happened? I set the field error for the username field when there is a response from the API in the first step, but the error does not appear....

**Is your feature request related to a problem? Please describe.** There is just pipe(&& or and) that can be applied to global rules. I sometimes need or, not, and ......

✨ enhancement
v5

**Is your feature request related to a problem? Please describe.** Get the error messages of field array **Describe the solution you'd like** Currently when using Field, there is the slot...

i have moved yup to peerDependencies to allow users the flexibility to manage the version of yup in their own projects.

### What happened? The following code produces the resulting type error: ```ts const validationSchema = toTypedSchema( v.object({ email: v.pipe( v.nonOptional(v.string(), 'Email is required'), v.trim(), v.email('Must be a valid email'), ),...

When you initially validate the form, everything works as expected. But once you remove a value that's been validated, it no longer validates. I have a video demonstrating the issue...

First of all, thanks for your support and great work. Currently we provide form submit handler by passing it to `handleSubmit` function returned from `useForm` composable. Instead of calling it...

✨ enhancement