fix(Calendar): incorrectly selected when a date is disabled (#10196)

This commit is contained in:
Ethan 2022-01-16 16:34:32 +08:00 committed by GitHub
parent 0de7b9c0b9
commit 6dbd0caf2b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -406,7 +406,11 @@ export default defineComponent({
);
if (disabledDay) {
if(startDay.getTime() >= getPrevDay(disabledDay).getTime()) {
select([date]);
}else {
select([startDay, getPrevDay(disabledDay)]);
}
} else {
select([startDay, date], true);
}