Answer the question
In order to leave comments, you need to log in
How to make input date required for input (Vue + vuelidate)?
<input v.model="$v.date.$model" :class="status($v.date)" type="date" />
validations:{
date: {
}
}
Answer the question
In order to leave comments, you need to log in
import { required } from 'vuelidate/lib/validators'
validations:{
date: {
required
}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question