mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 05:42:44 +08:00
fix(Calendar): fix watch 'defaultDate' error (#13077)
This commit is contained in:
parent
8dd13eae11
commit
11da88af63
@ -622,9 +622,8 @@ export default defineComponent({
|
|||||||
);
|
);
|
||||||
watch(
|
watch(
|
||||||
() => props.defaultDate,
|
() => props.defaultDate,
|
||||||
(value = null) => {
|
(value) => {
|
||||||
currentDate.value = value;
|
reset(value);
|
||||||
scrollToCurrentDate();
|
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -308,3 +308,30 @@ test('should allow default date to be maxDate when using allowSameDay prop', ()
|
|||||||
wrapper.find('.van-calendar__confirm').trigger('click');
|
wrapper.find('.van-calendar__confirm').trigger('click');
|
||||||
expect(wrapper.emitted<[Date]>('confirm')![0][0]).toEqual([maxDate, maxDate]);
|
expect(wrapper.emitted<[Date]>('confirm')![0][0]).toEqual([maxDate, maxDate]);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('should call reset when defaultDate prop changes', async () => {
|
||||||
|
const wrapper = mount(Calendar, {
|
||||||
|
props: {
|
||||||
|
poppable: false,
|
||||||
|
defaultDate: undefined,
|
||||||
|
minDate,
|
||||||
|
maxDate,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
wrapper.find('.van-calendar__confirm').trigger('click');
|
||||||
|
expect(wrapper.emitted<[Date]>('confirm')![0][0]).toEqual(maxDate);
|
||||||
|
|
||||||
|
await wrapper.setProps({ defaultDate: minDate });
|
||||||
|
wrapper.find('.van-calendar__confirm').trigger('click');
|
||||||
|
expect(wrapper.emitted<[Date]>('confirm')![1][0]).toEqual(minDate);
|
||||||
|
|
||||||
|
await wrapper.setProps({ defaultDate: null });
|
||||||
|
expect(wrapper.find('.van-calendar__confirm').classes()).toContain(
|
||||||
|
'van-button--disabled',
|
||||||
|
);
|
||||||
|
|
||||||
|
await wrapper.setProps({ defaultDate: undefined });
|
||||||
|
wrapper.find('.van-calendar__confirm').trigger('click');
|
||||||
|
expect(wrapper.emitted<[Date]>('confirm')![2][0]).toEqual(maxDate);
|
||||||
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user