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

I'm using v4 with the composition api. I don't quite understand how the `useForm` and `useField` functions relate to each other. Currently I'm having multiple small forms on the same...

✨ enhancement
🛳 In PR

I wish this code will work so we can omit writing the code for `useField` for each field one by one. ```js import { useForm } from "vee-validate"; import {...

✨ enhancement
🌟 feature

### What happened? I'm getting a Typescript error "Element implicitly has an 'any' type because expression of type '`registrants[${number}].firstName`' can't be used to index type". ![image](https://user-images.githubusercontent.com/15674865/170575681-ac580a3b-b522-48bb-ba3e-e14d7337dc5c.png) ### Reproduction steps 1....

👕 TypeScript

**Is your feature request related to a problem? Please describe.** Currently, there is no connection between the schema and the `useField` methods. Consider for example, the following code snippet taken...

✨ enhancement
👕 TypeScript

### What happened? Vee-Validate is slow when validate huge amount of data with deep properties. You can check it in demo link. ### Reproduction steps 1. I have array of...

💨 performance

**Is your feature request related to a problem? Please describe.** While validating password field with multiple validation, I would like to see all the errors related with password field. However,...

### What happened? I have a schema that looks like: ```js const validationObject = z.Object({...}).and(z.Object({}) ``` This results in a z.ZodIntersection and typescript does not like to put it into...

### Discussed in https://github.com/logaretm/vee-validate/discussions/3743 Originally posted by **danh65** April 6, 2022 I have a cross-field global rule defined that validates the current field value against the target field value. I...

✨ enhancement

### What happened? When looping through multiple `v-autocomplete` components that share the same `v-model` (each with their own `ValidationProvider`), it is not possible to successfully call the `applyResult` method on...

### What happened? When I use useForm() I'm able to call validate() fine and it returns the following: It shows I have a name and description field, but then when...

✨ enhancement