Looking to create a Vuetify form that allows users to input both the date and time of an event for both the start and end times. Currently, my code looks like this:
<v-form @submit.prevent="addEvent">
<v-text-field v-model="eventName" type="text" label="event name (required)"></v-text-field>
<v-text-field v-model="start" type="date" label="start (required)"></v-text-field>
<v-text-field v-model="end" type="date" label="end (required)"></v-text-field>
<v-btn type="submit" color="primary" class="mr-4" @click.stop="dialog = false">
Add Event
</v-btn>
</v-form>
Is there a way to incorporate a single input field that accepts both date and time? If so, what would be the best approach to implement this feature? Thanks!