I have tried change-calendar and panel-change events, it wasn't working. Please help me with it.
you can using
this.$refs.datepicker.closePopup();
to close it.
tried it, not working with date range picker.
You can watch the value then close the popup when it is changed.
<date-picker v-model="value" ref="datepicker" range ></date-picker>
watch: {
value (newDate, oldDate) {
this.$refs.datepicker.closePopup()
}
}
Thank you so much @mengxiong10 .
Most helpful comment
You can watch the value then close the popup when it is changed.