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

PickerGroup

\n

Intro

\n

Used to combine multiple Picker components, allow users to select multiple value.

\n

The following components can be placed inside PickerGroup:

\n\n

Install

\n

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

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

Usage

\n

Select Date Time

\n

Place a DatePicker component and a TimePicker component in the default slot of the PickerGroup to select both a date and a time.

\n

PickerGroup will render a unified toolbar, so the child components will not render is\'s toolbar, and the toolbar props and events need to be set to the PickerGroup, such as the title prop, confirm event, cancel event, etc. Other props and events in child components can be used as before.

\n
<van-picker-group\n  title="Title"\n  :tabs="['Date', 'Time']"\n  @confirm="onConfirm"\n  @cancel="onCancel"\n>\n  <van-date-picker\n    v-model="currentDate"\n    :min-date="minDate"\n    :max-date="maxDate"\n  />\n  <van-time-picker v-model="currentTime" />\n</van-picker-group>\n
\n
import { ref } from 'vue';\nimport { showToast } from 'vant';\n\nexport default {\n  setup() {\n    const currentDate = ref(['2022', '06', '01']);\n    const currentTime = ref(['12', '00']);\n\n    const onConfirm = () => {\n      showToast(\n        `${currentDate.value.join('/')} ${currentTime.value.join(':')}`,\n      );\n    };\n\n    const onCancel = () => {\n      showToast('cancel');\n    };\n\n    return {\n      minDate: new Date(2020, 0, 1),\n      maxDate: new Date(2025, 5, 1),\n      currentDate,\n      currentTime,\n      onConfirm,\n      onCancel,\n    };\n  },\n};\n
\n

Next Step Button

\n

In some scenarios, in order to ensure that users can select all Pickers in turn, you can set the next-step-text prop of PickerGroup. After setting the next-step-text prop, if the user has not switched to the last tab, the button in the upper right corner will become "Next Step", and automatically switch to the next Picker after clicking. When the user switches to the last tab, the button in the upper right corner changes to "Confirm".

\n
<van-picker-group\n  title="Title"\n  :tabs="['Date', 'Time']"\n  next-step-text="Next Step"\n  @confirm="onConfirm"\n  @cancel="onCancel"\n>\n  <van-date-picker\n    v-model="currentDate"\n    :min-date="minDate"\n    :max-date="maxDate"\n  />\n  <van-time-picker v-model="currentTime" />\n</van-picker-group>\n
\n
import { ref } from 'vue';\nimport { showToast } from 'vant';\n\nexport default {\n  setup() {\n    const currentDate = ref(['2022', '06', '01']);\n    const currentTime = ref(['12', '00']);\n\n    const onConfirm = () => {\n      showToast(\n        `${currentDate.value.join('/')} ${currentTime.value.join(':')}`,\n      );\n    };\n\n    const onCancel = () => {\n      showToast('cancel');\n    };\n\n    return {\n      minDate: new Date(2020, 0, 1),\n      maxDate: new Date(2025, 5, 1),\n      currentDate,\n      currentTime,\n      onConfirm,\n      onCancel,\n    };\n  },\n};\n
\n

Select Date Range

\n

Place two DatePicker components in the default slot of PickerGroup to select the time range.

\n
<van-picker-group\n  title="Title"\n  :tabs="['Start Date', 'End Date']"\n  @confirm="onConfirm"\n  @cancel="onCancel"\n>\n  <van-date-picker\n    v-model="startDate"\n    :min-date="minDate"\n    :max-date="maxDate"\n  />\n  <van-date-picker v-model="endDate" :min-date="minDate" :max-date="maxDate" />\n</van-picker-group>\n
\n
import { ref } from 'vue';\nimport { showToast } from 'vant';\n\nexport default {\n  setup() {\n    const startDate = ref(['2022', '06', '01']);\n    const endDate = ref(['2023', '06', '01']);\n\n    const onConfirm = () => {\n      showToast(`${startDate.value.join('/')} ${endDate.value.join('/')}`);\n    };\n\n    const onCancel = () => {\n      showToast('cancel');\n    };\n\n    return {\n      minDate: new Date(2020, 0, 1),\n      maxDate: new Date(2025, 5, 1),\n      endDate,\n      startDate,\n      onConfirm,\n      onCancel,\n    };\n  },\n};\n
\n

Select Time Range

\n

Place two TimePicker components in the default slot of PickerGroup to select the time range.

\n
<van-picker-group\n  title="Title"\n  :tabs="['Start Time', 'End Time']"\n  @confirm="onConfirm"\n  @cancel="onCancel"\n>\n  <van-time-picker v-model="startTime" />\n  <van-time-picker v-model="endTime" />\n</van-picker-group>\n
\n
import { ref } from 'vue';\nimport { showToast } from 'vant';\n\nexport default {\n  setup() {\n    const startTime = ref(['12', '00']);\n    const endTime = ref(['12', '00']);\n\n    const onConfirm = () => {\n      showToast(`${startTime.value.join(':')} ${endTime.value.join(':')}`);\n    };\n\n    const onCancel = () => {\n      showToast('cancel');\n    };\n\n    return {\n      endTime,\n      startTime,\n      onConfirm,\n      onCancel,\n    };\n  },\n};\n
\n

Controlled Mode

\n

Supports both uncontrolled and controlled modes:

\n\n
<van-button type="primary" @click="setActiveTab">\n  toggle tab, current {{ activeTab }}\n</van-button>\n<van-picker-group\n  v-model:active-tab="activeTab"\n  title="Title"\n  :tabs="['Date', 'Time']"\n  @confirm="onConfirm"\n  @cancel="onCancel"\n>\n  <van-date-picker\n    v-model="currentDate"\n    :min-date="minDate"\n    :max-date="maxDate"\n  />\n  <van-time-picker v-model="currentTime" />\n</van-picker-group>\n
\n
import { ref } from 'vue';\nimport { showToast } from 'vant';\n\nexport default {\n  setup() {\n    const activeTab = ref(0);\n    const currentDate = ref(['2022', '06', '01']);\n    const currentTime = ref(['12', '00']);\n\n    const setActiveTab = () => {\n      activeTab.value = activeTab.value ? 0 : 1;\n    };\n\n    const onConfirm = () => {\n      showToast(\n        `${currentDate.value.join('/')} ${currentTime.value.join(':')}`,\n      );\n    };\n    const onCancel = () => {\n      showToast('cancel');\n    };\n\n    return {\n      minDate: new Date(2020, 0, 1),\n      maxDate: new Date(2025, 5, 1),\n      activeTab,\n      currentDate,\n      currentTime,\n      setActiveTab,\n      onConfirm,\n      onCancel,\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
AttributeDescriptionTypeDefault
v-model:active-tab v4.3.2Set index of active tabnumber | string0
tabsTitles of tabsstring[][]
titleToolbar titlestring\'\'
next-step-text v4.0.8Text of next step buttonstring\'\'
confirm-button-textText of confirm buttonstringConfirm
cancel-button-textText of cancel buttonstringCancel
\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
NameDescriptionSlotProps
toolbarCustom toolbar content-
titleCustom title-
confirmCustom confirm button text-
cancelCustom cancel button text-
\n

Types

\n

The component exports the following type definitions:

\n
import type { PickerGroupProps, PickerGroupThemeVars } from 'vant';\n
\n

Theming

\n

CSS Variables

\n

The component provides the following CSS variables, which can be used to customize styles. Please refer to ConfigProvider component.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDefault ValueDescription
--van-picker-group-background--van-background-2-
\n
'},null,8,l))}}}]);