I'm using vuetify 2's time picker component, but my client says users don't understand the clock. Is there any way to convert it in a traditional time picker? or could you recomended a traditional time picker in vue?
I'm using vuetify 2's time picker component, but my client says users don't understand the clock. Is there any way to convert it in a traditional time picker? or could you recomended a traditional time picker in vue?
I would recommend the HTML time input
Just add type="time"
to a VTextField
:
<v-text-field type="time" />
Playground