<a-date-picker :disabledDate="disabledEndDate" style=" 100%" placeholder="请输入出生日期" />
// 设置可选最大日期 disabledEndDate (endValue) { const startValue = new Date() if (!endValue || !startValue) { return false } return startValue.valueOf() <= endValue.valueOf() }