Innologica/vue2-daterange-picker

clear the selected date

roy126 opened this issue · 1 comments

Hi, I can't clear the already selected date, I tried it like this:

this.date Range = { date Start: null, date End: null };

this.dateRange.date Start = null;
this.dateRange.date End= null;

this.dateRange.dateEnd= '';
this.dateRange.dateStart = '';

Nothing helps

image

You are using wrong props for the v-model. They are startDate and endDate and you clear them like this:

this.dateRange.startDate = null
this.dateRange.endDate = null