I want to stop showing validations before submit button is click. i mean when a person fills in correct data of make the required field empty vee-Validate will not show error on that time instead is show errors when a person clicks on submit button i have validation check function before submit and its working fine. I just want to stop showing errors before submit
You can define the events option in the config as an empty string:
Vue.use(VeeValidate, {
events: ''
});
which will disable all listening behaviors, then you should use $validator.validate() to validate your inputs manually.
@logaretm Thanks
Most helpful comment
You can define the
eventsoption in the config as an empty string:which will disable all listening behaviors, then you should use
$validator.validate()to validate your inputs manually.