Hey there! I'm still getting the hang of vuetify and have been experimenting with creating functions using simple components. One such component I've been using is v-date-picker.
However, I've encountered an issue where the calendar doesn't pop up when I click on the date text field. The gif below illustrates this problem:
https://i.sstatic.net/O5IXi.gif
To give you a better idea of what I'm aiming for, the expected behavior should look like this:
https://i.sstatic.net/018Ny.png
Here's the code snippet that I'm working with:
<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>
I have double-checked my code for any incorrect variable names, assignments, or validations, but haven't had any luck in resolving the issue. Any insights on what might be causing this malfunction would be greatly appreciated!
Just to mention, my current vuetify version is 1.4.