[Vuejs]-VeeValidate – Property or method "$validator" is not defined

0👍

The components API in vee-validate 2 and 3 are different from the old directive API that injects a $validator instance into your component. You cannot mix both APIs, it’s either one or the other.

In other words, you cannot access the $validator anymore. Consult the v3 documentation to learn more about the Provider/Observer API.

Leave a comment