/*! For license information please see 5532.30f69903.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["5532"],{24030:function(s,n,t){"use strict";t.r(n);var a=t("80681");let e=["innerHTML"];n.default={setup:()=>({html:""}),render:()=>((0,a.wg)(),(0,a.iD)("div",{class:"van-doc-markdown-body",innerHTML:'

TimePicker

\n

Intro

\n

Used to select time, usually used with the Popup component.

\n

Install

\n

Register component globally via app.use, refer to Component Registration for more registration ways.

\n
import { createApp } from 'vue';\nimport { TimePicker } from 'vant';\n\nconst app = createApp();\napp.use(TimePicker);\n
\n

Usage

\n

Basic Usage

\n
<van-time-picker v-model="currentTime" title="Choose Time" />\n
\n
import { ref } from 'vue';\n\nexport default {\n  setup() {\n    const currentTime = ref(['12', '00']);\n    return { currentTime };\n  },\n};\n
\n

Columns Type

\n

Using columns-type prop to control the type of columns.

\n

For example:

\n\n
<van-time-picker\n  v-model="currentTime"\n  title="Choose Time"\n  :columns-type="columnsType"\n/>\n
\n
import { ref } from 'vue';\n\nexport default {\n  setup() {\n    const currentTime = ref(['12', '00', '00']);\n    const columnsType = ['hour', 'minute', 'second'];\n    return {\n      currentTime,\n      columnsType,\n    };\n  },\n};\n
\n

Time Range

\n

You can use props like min-hour and max-hour to limit the range of hours, min-minute and max-minute to limit the range of minutes, and min-second and max-second to limit the range of seconds.

\n

For example, in the following example, users can only select hours between 10 and 20, and minutes between 30 and 40.

\n
<van-time-picker\n  v-model="currentTime"\n  title="Choose Time"\n  :min-hour="10"\n  :max-hour="20"\n  :min-minute="30"\n  :max-minute="40"\n/>\n
\n
import { ref } from 'vue';\n\nexport default {\n  setup() {\n    const currentTime = ref(['12', '35']);\n    return { currentTime };\n  },\n};\n
\n

Overall Time Range

\n

You can use min-time and max-time attributes to limit the overall time range, with the format 10:00:00.

\n\n

For example, in the following example, users can select any time between 09:40:10 and 20:20:50.

\n
<van-time-picker\n  v-model="currentTime"\n  title="Choose Time"\n  :columns-type="['hour', 'minute', 'second']"\n  min-time="09:40:10"\n  max-time="20:20:50"\n/>\n
\n
import { ref } from 'vue';\n\nexport default {\n  setup() {\n    const currentTime = ref(['12', '00', '00']);\n    return { currentTime };\n  },\n};\n
\n

Options Formatter

\n

Using formatter prop to format option text.

\n
<van-time-picker\n  v-model="currentTime"\n  title="Choose Time"\n  :formatter="formatter"\n/>\n
\n
import { ref } from 'vue';\n\nexport default {\n  setup() {\n    const currentTime = ref(['12', '00']);\n    const formatter = (type, option) => {\n      if (type === 'hour') {\n        option.text += 'h';\n      }\n      if (type === 'minute') {\n        option.text += 'm';\n      }\n      return option;\n    };\n\n    return {\n      formatter,\n      currentTime,\n    };\n  },\n};\n
\n

Options Filter

\n

Using filter prop to filter options.

\n
<van-time-picker v-model="currentTime" title="Choose Time" :filter="filter" />\n
\n
import { ref } from 'vue';\n\nexport default {\n  setup() {\n    const currentTime = ref(['12', '00']);\n\n    const filter = (type, options) => {\n      if (type === 'minute') {\n        return options.filter((option) => Number(option.value) % 10 === 0);\n      }\n      return options;\n    };\n\n    return {\n      filter,\n      currentTime,\n    };\n  },\n};\n
\n

Advanced Usage

\n

The third parameter of the filter function can get the currently selected time, which can be used to filter unwanted times more flexibly when using the uncontrolled mode.

\n
<van-time-picker title="Choose Time" :filter="filter" />\n
\n
export default {\n  setup() {\n    const filter = (type, options, values) => {\n      const hour = +values[0];\n\n      if (type === 'hour') {\n        return options.filter(\n          (option) => Number(option.value) >= 8 && Number(option.value) <= 18,\n        );\n      }\n\n      if (type === 'minute') {\n        options = options.filter((option) => Number(option.value) % 10 === 0);\n\n        if (hour === 8) {\n          return options.filter((option) => Number(option.value) >= 40);\n        }\n\n        if (hour === 18) {\n          return options.filter((option) => Number(option.value) <= 20);\n        }\n      }\n\n      return options;\n    };\n\n    return {\n      filter,\n    };\n  },\n};\n
\n

API

\n

Props

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AttributeDescriptionTypeDefault
v-modelCurrent timestring[]-
columns-typeColumns typestring[][\'hour\', \'minute\']
min-hourMin hournumber | string0
max-hourMax hournumber | string23
min-minuteMin minutenumber | string0
max-minuteMax minutenumber | string59
min-secondMin secondnumber | string0
max-secondMax secondnumber | string59
min-time v4.5.0Min time, format reference 07:40:00, min-hour min-minute min-second is invalid when usedstring-
max-time v4.5.0Max time, format reference 10:20:00, min-hour min-minute max-second is invalid when usedstring-
titleToolbar titlestring\'\'
confirm-button-textText of confirm buttonstringConfirm
cancel-button-textText of cancel buttonstringCancel
show-toolbarWhether to show toolbarbooleantrue
loadingWhether to show loading promptbooleanfalse
readonlyWhether to be readonlybooleanfalse
filterOption filter(type: string, options: PickerOption[], values: string[]) => PickerOption[]-
formatterOption text formatter(type: string, option: PickerOption) => PickerOption-
option-heightOption height, supports px vw vh rem unit, default pxnumber | string44
visible-option-numCount of visible columnsnumber | string6
swipe-durationDuration of the momentum animation, unit msnumber | string1000
\n

Events

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
EventDescriptionArguments
confirmEmitted when the confirm button is clicked{ selectedValues, selectedOptions, selectedIndexes }
cancelEmitted when the cancel button is clicked{ selectedValues, selectedOptions, selectedIndexes }
changeEmitted when current option is changed{ selectedValues, selectedOptions, selectedIndexes, columnIndex }
\n

Slots

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescriptionSlotProps
toolbarCustom toolbar content-
titleCustom title-
confirmCustom confirm button text-
cancelCustom cancel button text-
optionCustom option contentoption: PickerOption, index: number
columns-topCustom content above columns-
columns-bottomCustom content below columns-
\n

Methods

\n

Use ref to get Picker instance and call instance methods.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescriptionAttributeReturn value
confirmStop scrolling and emit confirm event--
getSelectedTimeGet current selected time-string[]
\n

Types

\n

The component exports the following type definitions:

\n
import type {\n  TimePickerProps,\n  TimePickerColumnType,\n  TimePickerInstance,\n} from 'vant';\n
\n

TimePickerInstance is the type of component instance:

\n
import { ref } from 'vue';\nimport type { TimePickerInstance } from 'vant';\n\nconst timePickerRef = ref<TimePickerInstance>();\n\ntimePickerRef.value?.confirm();\n
\n
'},null,8,e))}}}]);