so I'm fairly new to vuetify and been working on making functionalities from simple components. I have used various components and one such component is v-date-picker.
For some reason, the calendar does not pop up when I click on the date text field.
The gif below shows the current behaviour:
Expected behaviour:
Below is the code:
<v-date-picker
@input="datePickerStartDate = false"
v-model="newUnitPage1.start_date_of_unit"
type="date"
:show-current="false"
:max="newUnitPage1.end_date_of_unit">
</v-date-picker>
Can someone tell me what could be the possible reasons for this breakage? I have checked my code throughly for wrong variable names, miss assignments and validations.
Note: I'm using vuetify version 1.4


<v-date-picker @input="datePickerStartDate = false" v-model="newUnitPage1.start_date_of_unit" type="date" :show-current="false" :max="newUnitPage1.end_date_of_unit"></v-date-picker>- hrishikeshpaul