fix(Calendar): fix getInitialDate function error (#13075)

Co-authored-by: neverland <jait.chen@foxmail.com>
This commit is contained in:
pany 2024-09-02 22:23:58 +08:00 committed by GitHub
parent 8aeeba497e
commit 8dd13eae11
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 21 additions and 0 deletions

View File

@ -165,6 +165,11 @@ export default defineComponent({
defaultDate = [];
}
// reset invalid default date
if (defaultDate.length === 1 && compareDay(defaultDate[0], now) === 1) {
defaultDate = [];
}
const min = minDate.value;
const max = maxDate.value;

View File

@ -655,3 +655,19 @@ test('should render confirm-text slot correctly', async () => {
expect(wrapper.find('.van-calendar__confirm').html()).toMatchSnapshot();
});
test('the defaultDate length of 1 should be handled correctly', async () => {
const wrapper = mount(Calendar, {
props: {
poppable: false,
defaultDate: [getNextDay(now)],
type: 'range',
},
});
wrapper.find('.van-calendar__confirm').trigger('click');
expect(wrapper.emitted<[Date]>('confirm')![0][0]).toEqual([
now,
getNextDay(now),
]);
});