image I'm currently working on a Vue.js project where users can input the time they spent on tasks in HH:MM:SS format (as shown in the image). I need to send this information to the backend, but I'm having trouble figuring out how to make a Vuetify textfield accept this type of input. The requirement is to use a Vuetify textfield instead of a regular HTML input.
<v-text-field
filled
rounded
dense
class="rounded-0"
name="projectTime"
placeholder="HH:MM:SS"
v-model="entryEditForm.projectTime"
></v-text-field>