I am using vee-validate 3.1.1 and vue 2.5.17.
After successful form submission I am resetting the input
this.name = ''
But validation error message shows after resetting the input like the below image
There was same problem in vee-validate 2.* I had solved that with this code
this.$nextTick(() => {
this.errors.clear();
})
