[Vuejs]-Vuelidate date input

-1👍

Unfortunately, there are no built-in validators for date in vuelidate:
https://monterail.github.io/vuelidate/#sub-builtin-validators

Anyway, you can use JS lib like luxon and create your custom validator to check dates.

Luxon has great documentation where you can find really helpful methods like plus or diff that can be handy in your case 🙂

Leave a comment