diff --git a/src/components/input/datepicker.vue b/src/components/input/datepicker.vue index 91bfc7a6b..f6208a555 100644 --- a/src/components/input/datepicker.vue +++ b/src/components/input/datepicker.vue @@ -94,7 +94,7 @@ @@ -115,7 +115,6 @@ export default { date: null, show: false, - flatpickrDate: null, flatPickerConfig: { altFormat: 'j M Y H:i', altInput: true, @@ -167,7 +166,6 @@ export default { const newDate = new Date() newDate.setDate(newDate.getDate() + interval) this.date = newDate - this.flatpickrDate = newDate this.updateData() }, getDayIntervalFromString(date) {