Skip to main content

Time Picker

The TimePicker is stand-alone component that can be utilized in many existing Vuetify components. It offers the user a visual representation for selecting the time.

info

For more details about Vuetify’s usage of TimePicker component, click TimePicker page.
For more prop explanations, click Vuetify TimePicker API page.

Props

AttributeDescriptionTypeDefault
darkApplies the dark theme variant to the component. You can find more information on the Material Design documentation for dark themes.booleanFalse
disabledDisables picker.booleanfalse
formatDefines the format of a time displayed in picker. Available options are ampm and 24hr.string'ampm'
maxMaximum allowed time.stringundefined
minMinimum allowed time.stringundefined
noTitleHide the picker title.booleanfalse
valueTime picker model (ISO 8601 format, 24hr hh:mm).anyundefined
visibleVisibility of TimePicker component.booleantrue

Events

AttributeDescription
changeEmitted when the time selection is done (when user changes the minute for HH:MM picker and the second for HH:MM:SS picker
click:hourEmitted when user selects the hour
click:minuteEmitted when user selects the minute

Slots

AttributeDescription
defaultDisplayed below the clock, can be used for example for adding action button (OK and Cancel)

Component Samples

Format

A time picker can be switched to 24hr format. Note that the format prop defines only the way the picker is displayed, picker’s value is always in 24hr format.

image

image

Range

This is an example of joining pickers together using min and max prop.

image

Dark Mode

image

No title

You can remove picker’s title.

image