Versions
Describe the bug
On use it with elementui select component,when i choose an option,it check failed on event blur
It's because the default validation event is input.
To change this behavior globally, you can set the events for validation like so
Vue.use(VeeValidate, {
events: 'input|blur'
});
Or you can change the behavior per input element like so
<select ... data-vv-validate-on="blur">
...
</select>
You can also have a look into the docs.
If @nicokoenig answer did not fix the issue for you, feel free to create a live example on jsfiddle or codesandbox and I will take a look.
Most helpful comment
It's because the default validation event is
input.To change this behavior globally, you can set the events for validation like so
Or you can change the behavior per input element like so
You can also have a look into the docs.