In my vuejs application I'm using input field to enter a time.
field type is time
<!-- Start Time -->
<div v-if="this.selectedValue=== '1'" class="container mx-auto flex bg-white px-6 py-1 space-x-2">
<dashboard-input-label class="col-sm-2 mb-2 w-full" identifier="shift_start_time">
Start time
</dashboard-input-label>
<div class="col-sm-10 mb-6 w-full">
<input
name="shift_start_time"
type="time"
class="form-input w-full relative z-10"
placeholder="Start time"
>
</div>
</div>
<!-- Start Time -->
This'll give me an output as follows,
But I need this time picker to be a 24 hours one without having AM and PM
How can achieve this, since MDN also does not have proper explanation on this....

