i got error message as below, when i use date_format or date_between or after and before.
am i doing wrong with date format ???
"[vee-validate]: No such validator 'date_between' exists."
Date validators requires moment to either be in the global scope, or you install them manually, that solves the dependency problem without increasing the plugin size.
import moment from 'moment';
import { Validator } from 'vee-validate';
Validator.installDateTimeValidators(moment);
thanks for reply ...
you save my day ~
Most helpful comment
Date validators requires moment to either be in the global scope, or you install them manually, that solves the dependency problem without increasing the plugin size.