/*! 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:'
The cascader component is used for the selection of multi-level data. The typical scene is the selection of provinces and cities.
\nRegister component globally via app.use
, refer to Component Registration for more registration ways.
import { createApp } from 'vue';\nimport { Cascader } from 'vant';\n\nconst app = createApp();\napp.use(Cascader);\n
\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
\nimport { 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<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<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
\nimport { 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<van-cascader\n v-model="code"\n title="Select Area"\n :options="options"\n :field-names="fieldNames"\n/>\n
\nimport { 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<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
\nimport { 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
\nAttribute | \nDescription | \nType | \nDefault | \n
---|---|---|---|
v-model | \nValue of selected option | \nstring | number | \n- | \n
title | \nTitle | \nstring | \n- | \n
options | \nOptions | \nCascaderOption[] | \n[] | \n
placeholder | \nPlaceholder of unselected tab | \nstring | \nSelect | \n
active-color | \nActive color | \nstring | \n#1989fa | \n
swipeable | \nWhether to enable gestures to slide left and right | \nboolean | \ntrue | \n
closeable | \nWhether to show close icon | \nboolean | \ntrue | \n
show-header | \nWhether to show header | \nboolean | \ntrue | \n
close-icon | \nClose icon name | \nstring | \ncross | \n
field-names | \nCustom the fields of options | \nCascaderFieldNames | \n{ text: \'text\', value: \'value\', children: \'children\' } | \n
Key | \nDescription | \nType | \n
---|---|---|
text | \nOption text | \nstring | \n
value | \nOption value | \nstring | number | \n
color | \nText color | \nstring | \n
children | \nCascade children | \nCascaderOption[] | \n
disabled | \nWhether to disable option | \nboolean | \n
className | \nclassName for the option | \nstring | Array | object | \n
Event | \nDescription | \nArguments | \n
---|---|---|
change | \nEmitted when active option changed | \n{ value: string | number, selectedOptions: CascaderOption[], tabIndex: number } | \n
finish | \nEmitted when all options is selected | \n{ value: string | number, selectedOptions: CascaderOption[], tabIndex: number } | \n
close | \nEmitted when the close icon is clicked | \n- | \n
click-tab | \nEmitted when a tab is clicked | \nactiveTab: number, title: string | \n
Name | \nDescription | \nSlotProps | \n
---|---|---|
title | \nCustom title | \n- | \n
option | \nCustom option text | \n{ option: CascaderOption, selected: boolean } | \n
options-top | \nCustom the content above the options | \n{ tabIndex: number } | \n
options-bottom | \nCustom the content below the options | \n{ tabIndex: number } | \n
The component exports the following type definitions:
\nimport type { CascaderProps, CascaderOption, CascaderFieldNames } from 'vant';\n
\nThe component provides the following CSS variables, which can be used to customize styles. Please refer to ConfigProvider component.
\nName | \nDefault Value | \nDescription | \n
---|---|---|
--van-cascader-header-height | \n48px | \n- | \n
--van-cascader-header-padding | \n0 var(--van-padding-md) | \n- | \n
--van-cascader-title-font-size | \nvar(--van-font-size-lg) | \n- | \n
--van-cascader-title-line-height | \n20px | \n- | \n
--van-cascader-close-icon-size | \n22px | \n- | \n
--van-cascader-close-icon-color | \nvar(--van-gray-5) | \n- | \n
--van-cascader-selected-icon-size | \n18px | \n- | \n
--van-cascader-tabs-height | \n48px | \n- | \n
--van-cascader-active-color | \nvar(--van-danger-color) | \n- | \n
--van-cascader-options-height | \n384px | \n- | \n
--van-cascader-tab-color | \nvar(--van-text-color) | \n- | \n
--van-cascader-unselected-tab-color | \nvar(--van-text-color-2) | \n- | \n