I need help figuring out how to select a time range using v-date-picker on vCalender within my Vuetify project. Despite setting the mode of v-date-picker to dateTime, I am unable to find an option to choose the time along with the date. Is there something incorrect in my approach or implementation?
my-template
<div>
<div class="flex mb-2">
<label class="text-gray-600 font-medium"><input class="mr-1" type="radio" value="" v-model="timezone" />Local</label>
<label class="text-gray-600 font-medium ml-3"><input class="mr-1" type="radio" value="utc" v-model="timezone" />UTC</label>
</div>
<v-date-picker v-model="date" multiple :timezone="timezone" mode="dateTime" />
</div>
my data:
date: new Date(),
timezone: '',