Tailwind CSS Timepicker - Props

The following props are available for timepicker component. These are the custom props that we've added for the timepicker component and you can use all the other native props as well.

Attribute Type Description Default
v-modelstring Define default time for timepicker and get current timepicker value '12:00'

V-Model

The input format of v-model for this component is "hh:mm". Anything that is not a correct hour (0<=hh<24; 0<=mm<60) will use the components default listed in the table above.

 v-model = "12:30"
 v-model = "23:47"
 v-model = "7:21"