vee-validate
                                
                                 vee-validate copied to clipboard
                                
                                    vee-validate copied to clipboard
                            
                            
                            
                        ✅ Painless Vue forms
   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...
### 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...
**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) {}...
### 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:...