我正在尝试在 vuelidate 中验证日期。我想选择今天的日期或过去的日期。但它不起作用。这是我的最小代码:
import { required, maxValue } from 'vuelidate/lib/validators'
validations: {
operationalsince: { required, maxValue: maxValue(new Date()) }
},
computed: {
operationalsinceErrors () {
!this.$v.operationalsince.maxValue && errors.push('Date is invalid')
}
我还尝试了 v-date-picker 属性:
:max-date="new Date()" :disabled-dates="{ start: new Date(), end: null }"
但我没有达到我想要达到的目标。感谢您的任何建议。