vee-validate
vee-validate copied to clipboard
✅ Painless Vue forms
### What happened? @vee-validate/i18n use of params for example in en.json messages.min is: The {field} field must be 0:{width} pixels by 1:{height} pixels Is incompatible with vue-i18n format for array...
### What happened? I tried to test the result of a form validation with jest and got the following error TypeError: 'get' on proxy: property '0' is a read-only and...
**Is your feature request related to a problem? Please describe.** When migrating from v3 to v4, I've just register component `Field` as `ValidationProvider` and used old code. I have many...
### Discussed in https://github.com/logaretm/vee-validate/discussions/3535 Originally posted by **AnnaYuS** October 15, 2021 In case i'm getting multiple error messages for one field, is it possible to access all of them from...
The current `double` rule only allows a specific decimal place like: ``` ``` It currently only allows values such as `14.20`, I was hoping it can also allow `14.2`
Currently I need to access form errors outside of form context like:  I can't get the form context in component `b.vue`. What do you think about declaring props `name`:...
### What happened? Email word is not translated in el.js https://i.imgur.com/3p5rrac.png also relevant for latest version https://github.com/logaretm/vee-validate/blob/main/packages/i18n/src/locale/el.json ### Reproduction steps https://github.com/logaretm/vee-validate/blob/main/packages/i18n/src/locale/el.json ### Version Vue.js 3.x and vee-validate 4.x ### What...
### What happened? Using vee-validate `v4.4.9` I'm using the `` tag to render the different steps of the form under a `` tag. The issue I have is that when...
**Is your feature request related to a problem? Please describe.** We have a form with four fields and a toggle. If the toggle is set to false all four fields...
Yup exemple from docs [using-a-custom-locale-dictionary](https://github.com/jquense/yup#using-a-custom-locale-dictionary): ```ts setLocale({ // use constant translation keys for messages without values mixed: { default: 'field_invalid', }, // use functions to generate an error object that...