/*! For license information please see 1348.13ce6a20.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["1348"],{95579: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:'

Cascader

\n

Intro

\n

The cascader component is used for the selection of multi-level data. The typical scene is the selection of provinces and cities.

\n

Install

\n

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

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

Usage

\n

Basic Usage

\n
<van-field\n  v-model="fieldValue"\n  is-link\n  readonly\n  label="Area"\n  placeholder="Select Area"\n  @click="show = true"\n/>\n<van-popup v-model="show" round position="bottom">\n  <van-cascader\n    v-model="cascaderValue"\n    title="Select Area"\n    :options="options"\n    @close="show = false"\n    @finish="onFinish"\n  />\n</van-popup>\n
\n
import { ref } from 'vue';\n\nexport default {\n  setup() {\n    const show = ref(false);\n    const fieldValue = ref('');\n    const cascaderValue = ref('');\n    const options = [\n      {\n        text: 'Zhejiang',\n        value: '330000',\n        children: [{ text: 'Hangzhou', value: '330100' }],\n      },\n      {\n        text: 'Jiangsu',\n        value: '320000',\n        children: [{ text: 'Nanjing', value: '320100' }],\n      },\n    ];\n    const onFinish = ({ selectedOptions }) => {\n      show.value = false;\n      fieldValue.value = selectedOptions.map((option) => option.text).join('/');\n    };\n\n    return {\n      show,\n      options,\n      onFinish,\n      fieldValue,\n      cascaderValue,\n    };\n  },\n};\n
\n

Custom Color

\n
<van-cascader\n  v-model="cascaderValue"\n  title="Select Area"\n  :options="options"\n  active-color="#ee0a24"\n  @close="show = false"\n  @finish="onFinish"\n/>\n
\n

Async Options

\n
<van-field\n  v-model="fieldValue"\n  is-link\n  readonly\n  label="Area"\n  placeholder="Select Area"\n  @click="show = true"\n/>\n<van-popup v-model="show" round position="bottom">\n  <van-cascader\n    v-model="cascaderValue"\n    title="Select Area"\n    :options="options"\n    @close="show = false"\n    @change="onChange"\n    @finish="onFinish"\n  />\n</van-popup>\n
\n
import { ref } from 'vue';\nimport { closeToast, showLoadingToast } from 'vant';\n\nexport default {\n  setup() {\n    const show = ref(false);\n    const fieldValue = ref('');\n    const cascaderValue = ref('');\n    const options = ref([\n      {\n        text: 'Zhejiang',\n        value: '330000',\n        children: [],\n      },\n    ]);\n    const onChange = ({ value }) => {\n      if (\n        value === options.value[0].value &&\n        options.value[0].children.length === 0\n      ) {\n        showLoadingToast('Loading...');\n        // mock data request\n        setTimeout(() => {\n          options.value[0].children = [\n            { text: 'Hangzhou', value: '330100' },\n            { text: 'Ningbo', value: '330200' },\n          ];\n          closeToast();\n        }, 1000);\n      }\n    };\n    const onFinish = ({ selectedOptions }) => {\n      show.value = false;\n      fieldValue.value = selectedOptions.map((option) => option.text).join('/');\n    };\n\n    return {\n      show,\n      options,\n      onFinish,\n      fieldValue,\n      cascaderValue,\n    };\n  },\n};\n
\n

Custom Field Names

\n
<van-cascader\n  v-model="code"\n  title="Select Area"\n  :options="options"\n  :field-names="fieldNames"\n/>\n
\n
import { ref } from 'vue';\n\nexport default {\n  setup() {\n    const code = ref('');\n    const fieldNames = {\n      text: 'name',\n      value: 'code',\n      children: 'items',\n    };\n    const options = [\n      {\n        name: 'Zhejiang',\n        code: '330000',\n        items: [{ name: 'Hangzhou', code: '330100' }],\n      },\n      {\n        name: 'Jiangsu',\n        code: '320000',\n        items: [{ name: 'Nanjing', code: '320100' }],\n      },\n    ];\n\n    return {\n      code,\n      options,\n      fieldNames,\n    };\n  },\n};\n
\n

Custom Content

\n
<van-cascader v-model="code" title="Select Area" :options="options">\n  <template #options-top="{ tabIndex }">\n    <div class="current-level">Current level is {{ tabIndex + 1 }}</div>\n  </template>\n</van-cascader>\n\n<style>\n  .current-level {\n    font-size: 14px;\n    padding: 16px 16px 0;\n    color: var(--van-gray-6);\n  }\n</style>\n
\n
import { ref } from 'vue';\n\nexport default {\n  setup() {\n    const code = ref('');\n    const options = [\n      {\n        name: 'Zhejiang',\n        code: '330000',\n        items: [{ name: 'Hangzhou', code: '330100' }],\n      },\n      {\n        name: 'Jiangsu',\n        code: '320000',\n        items: [{ name: 'Nanjing', code: '320100' }],\n      },\n    ];\n\n    return {\n      code,\n      options,\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
AttributeDescriptionTypeDefault
v-modelValue of selected optionstring | number-
titleTitlestring-
optionsOptionsCascaderOption[][]
placeholderPlaceholder of unselected tabstringSelect
active-colorActive colorstring#1989fa
swipeableWhether to enable gestures to slide left and rightbooleantrue
closeableWhether to show close iconbooleantrue
show-headerWhether to show headerbooleantrue
close-iconClose icon namestringcross
field-namesCustom the fields of optionsCascaderFieldNames{ text: \'text\', value: \'value\', children: \'children\' }
\n

Data Structure of CascaderOption

\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
KeyDescriptionType
textOption textstring
valueOption valuestring | number
colorText colorstring
childrenCascade childrenCascaderOption[]
disabledWhether to disable optionboolean
classNameclassName for the optionstring | Array | object
\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\n\n\n\n\n
EventDescriptionArguments
changeEmitted when active option changed{ value: string | number, selectedOptions: CascaderOption[], tabIndex: number }
finishEmitted when all options is selected{ value: string | number, selectedOptions: CascaderOption[], tabIndex: number }
closeEmitted when the close icon is clicked-
click-tabEmitted when a tab is clickedactiveTab: number, title: string
\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
titleCustom title-
optionCustom option text{ option: CascaderOption, selected: boolean }
options-topCustom the content above the options{ tabIndex: number }
options-bottomCustom the content below the options{ tabIndex: number }
\n

Types

\n

The component exports the following type definitions:

\n
import type { CascaderProps, CascaderOption, CascaderFieldNames } 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\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
NameDefault ValueDescription
--van-cascader-header-height48px-
--van-cascader-header-padding0 var(--van-padding-md)-
--van-cascader-title-font-sizevar(--van-font-size-lg)-
--van-cascader-title-line-height20px-
--van-cascader-close-icon-size22px-
--van-cascader-close-icon-colorvar(--van-gray-5)-
--van-cascader-selected-icon-size18px-
--van-cascader-tabs-height48px-
--van-cascader-active-colorvar(--van-danger-color)-
--van-cascader-options-height384px-
--van-cascader-tab-colorvar(--van-text-color)-
--van-cascader-unselected-tab-colorvar(--van-text-color-2)-
\n
'},null,8,l))}}}]);