Closed roy126 closed 2 years ago
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
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
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