public onDateStartChange(date: string) {
this.triggerValidation('dateStartPickerValue');
this.checkForSameTime();
this.cleanTime.date = moment(date).toISOString(true);
this.dateEndMinMax.min = this.cleanTime.date;
this.$emit('change');
}
<v-col class="pt-0 pb-0">
<menu-with-picker v-model="dateStartPickerValue"
:date-min-max="dateStartMinMax"
:error-messages="identifyErrorMessage($v.dateStartPickerValue)"
:label="$t('CLEAN_TIME_COMPONENT.TERM_START').toString()"
@input="onDateStartChange"></menu-with-picker>
</v-col>
This is the just my Vue code for the first bar.