I want to select a time range using v-date-picker on vCalender in my vuetify project. I use v-date-picker for this. Even though I use dateTime as the mod in v-date-picker, there is no place to select the time. It's just the calendar. Any ideas what I'm doing wrong?
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: '',