DEV Community

Discussion on: Dear VueJS devs, VeeValidate might not be worth it

Collapse
 
marredcheese profile image
MarredCheese

Nice article.

I think this line should be deleted since it doesn't seem to be doing anything:

this.validate = true;

And I think this line:

this.dirty.splice(this.dirty.indexOf('email'));

Should be changed to this to delete just that item:

this.dirty.splice(this.dirty.indexOf('email'), 1);