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

![image](https://github.com/logaretm/vee-validate/assets/4754770/ef3032f1-0ee5-46a8-939a-9bbe0dedf2e6) ![image](https://github.com/logaretm/vee-validate/assets/4754770/8b88d5c3-eee7-4a1a-ad13-95dc2a56e0e7) ![image](https://github.com/logaretm/vee-validate/assets/4754770/7ea9b93c-3357-413a-b524-00a4db28cc3b) https://github.com/logaretm/vee-validate/blob/b251ad0c48f9f7e7415a2764270a912273416fe5/packages/vee-validate/src/useForm.ts#L930

### What happened? The following code is provided in the vee-validate version 4 documentation (https://vee-validate.logaretm.com/v4/guide/i18n/#overview): ``` import { configure } from 'vee-validate'; import { localize } from '@vee-validate/i18n'; import en...

### What happened? When I use `errorBag` in `useForm` with array format, type-check (`vue-tsc --noEmit`) is failed. So when the following code is executed, it points out that the type...

Hello, according to docs https://vee-validate.logaretm.com/v4/guide/composition-api/nested-objects-and-arrays/ we can use nested objects OR avoid nesting for dot notation. But what if use it both? Example payload: ``` { nested: { field: "value...

✨ enhancement
v5

### What happened? I have to use a uno-ui input-component which has no name and it's id is generated and private. So I need to "find" the input fields ID...

### What happened? ```js // component A // there is already have a form (by useForm), const { values, setValues, } = useForm() // and then use setValues to set...

### What happened? I am using VeeValidate & yup with the Quasar framework. It seems like the attributes returned by a custom config method passed to `defineField` are not reactive...

✨ enhancement

**Is your feature request related to a problem? Please describe.** In the following scenario: ``` import type { MyGenericObject } from '@/types' // MyGenericObject extends GenericObject function onSubmit(values: MyGenericObject) {}...

👕 TypeScript

### What happened? Hi~ I found a wierd situation. I'm using the `Zod` validation schema, and I add a `refine` declaration on `Email` field, and I set `Email` field `validateOnValueUpdate:...