fix: add observer for limit date change (#5520)

This commit is contained in:
johnsonwong666 2023-08-22 10:05:08 +08:00 committed by GitHub
parent 610ce18859
commit d692b708af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -144,6 +144,15 @@ VantComponent({
scrollIntoView: '',
},
watch: {
minDate() {
this.initRect();
},
maxDate() {
this.initRect();
},
},
created() {
this.setData({
currentDate: this.getInitialDate(this.data.defaultDate),