Versions
Describe the bug
Hello guys. I wasn't sure if is this a bug or a feature, but I bug's label won because due to this issue I can't localize error message properly.
I've got input field with required and email validation rules.
v-validate="'required|email'"
In a short moment after user start typing his email, he receives the following error:
Please include an '@' in the email address. '' is missing an '@'
I didn't find any way to localize this message to different language.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
There is a way to localize this
Desktop (please complete the following information):
Additional context
Sorry if any way to localize this message actually exists, but I was looking for this and didn't find.
This is not the vee-validate validation message, It could be actually the native browser validation. add novalidate attribute to your form and try again. Check out the spec here attrs.
This solution worked for me.
Most helpful comment
This is not the vee-validate validation message, It could be actually the native browser validation. add
novalidateattribute to your form and try again. Check out the spec here attrs.