/*! For license information please see 8300.53f70ac3.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["8300"],{33117:function(s,n,a){"use strict";a.r(n);var t=a("80681");let e=["innerHTML"];n.default={setup:()=>({html:""}),render:()=>((0,t.wg)(),(0,t.iD)("div",{class:"van-doc-markdown-body",innerHTML:'
Used to select from a set of related data sets.
\nRegister component globally via app.use
, refer to Component Registration for more registration ways.
import { createApp } from 'vue';\nimport { TreeSelect } from 'vant';\n\nconst app = createApp();\napp.use(TreeSelect);\n
\n<van-tree-select\n v-model:active-id="activeId"\n v-model:main-active-index="activeIndex"\n :items="items"\n/>\n
\nimport { ref } from 'vue';\n\nexport default {\n setup() {\n const activeId = ref(1);\n const activeIndex = ref(0);\n const items = [\n {\n text: 'Group 1',\n children: [\n { text: 'Delaware', id: 1 },\n { text: 'Florida', id: 2 },\n { text: 'Georgia', id: 3, disabled: true },\n ],\n },\n {\n text: 'Group 2',\n children: [\n { text: 'Alabama', id: 4 },\n { text: 'Kansas', id: 5 },\n { text: 'Louisiana', id: 6 },\n ],\n },\n { text: 'Group 3', disabled: true },\n ];\n\n return {\n items,\n activeId,\n activeIndex,\n };\n },\n};\n
\n<van-tree-select\n v-model:active-id="activeIds"\n v-model:main-active-index="activeIndex"\n :items="items"\n/>\n
\nimport { ref } from 'vue';\n\nexport default {\n setup() {\n const activeIds = ref([1, 2]);\n const activeIndex = ref(0);\n const items = [\n {\n text: 'Group 1',\n children: [\n { text: 'Delaware', id: 1 },\n { text: 'Florida', id: 2 },\n { text: 'Georgia', id: 3, disabled: true },\n ],\n },\n {\n text: 'Group 2',\n children: [\n { text: 'Alabama', id: 4 },\n { text: 'Kansas', id: 5 },\n { text: 'Louisiana', id: 6 },\n ],\n },\n { text: 'Group 3', disabled: true },\n ];\n\n return {\n items,\n activeIds,\n activeIndex,\n };\n },\n};\n
\n<van-tree-select\n v-model:main-active-index="activeIndex"\n height="55vw"\n :items="items"\n>\n <template #content>\n <van-image\n v-if="activeIndex === 0"\n src="https://fastly.jsdelivr.net/npm/@vant/assets/apple-1.jpeg"\n />\n <van-image\n v-if="activeIndex === 1"\n src="https://fastly.jsdelivr.net/npm/@vant/assets/apple-2.jpeg"\n />\n </template>\n</van-tree-select>\n
\nimport { ref } from 'vue';\n\nexport default {\n setup() {\n const activeIndex = ref(0);\n return {\n activeIndex,\n items: [{ text: 'Group 1' }, { text: 'Group 2' }],\n };\n },\n};\n
\n<van-tree-select\n v-model:main-active-index="activeIndex"\n height="55vw"\n :items="items"\n/>\n
\nimport { ref } from 'vue';\n\nexport default {\n setup() {\n const activeIndex = ref(0);\n return {\n activeIndex,\n items: [\n {\n text: 'Group 1',\n children: [\n { text: 'Delaware', id: 1 },\n { text: 'Florida', id: 2 },\n { text: 'Georgia', id: 3, disabled: true },\n ],\n dot: true,\n },\n {\n text: 'Group 2',\n children: [\n { text: 'Alabama', id: 4 },\n { text: 'Kansas', id: 5 },\n { text: 'Louisiana', id: 6 },\n ],\n badge: 5,\n },\n ],\n };\n },\n};\n
\nAttribute | \nDescription | \nType | \nDefault | \n
---|---|---|---|
v-model:main-active-index | \nThe index of selected parent node | \nnumber | string | \n0 | \n
v-model:active-id | \nId of selected item | \nnumber | string | (number | string)[] | \n0 | \n
items | \nRequired datasets for the component | \nTreeSelectItem[] | \n[] | \n
height | \nHeight | \nnumber | string | \n300 | \n
max | \nMaximum number of selected items | \nnumber | string | \nInfinity | \n
selected-icon | \nSelected icon | \nstring | \nsuccess | \n
Event | \nDescription | \nArguments | \n
---|---|---|
click-nav | \nEmitted when parent node is selected | \nindex: number | \n
click-item | \nEmitted when item is selected | \nitem: TreeSelectChild | \n
Name | \nDescription | \nSlotProps | \n
---|---|---|
nav-text v4.1.0 | \nCustom name of the parent node | \nitem: TreeSelectChild | \n
content | \nCustom right content | \n- | \n
TreeSelectItem
should be an array contains specified tree objects.
In every tree object, text
property defines id
stands for the unique key while the children
contains sub-tree objects.
[\n {\n // name of the parent node\n text: 'Group 1',\n // badge\n badge: 3,\n // Whether to show red dot\n dot: true,\n // ClassName of parent node\n className: 'my-class',\n // leaves of this parent node\n children: [\n {\n // name of the leaf node\n text: 'Washington',\n // id of the leaf node, component highlights leaf node by comparing the activeId with this.\n id: 1,\n // disable options\n disabled: true,\n },\n {\n text: 'Baltimore',\n id: 2,\n },\n ],\n },\n];\n
\nThe component exports the following type definitions:
\nimport type { TreeSelectItem, TreeSelectChild, TreeSelectProps } 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-tree-select-font-size | \nvar(--van-font-size-md) | \n- | \n
--van-tree-select-nav-background | \nvar(--van-background) | \n- | \n
--van-tree-select-content-background | \nvar(--van-background-2) | \n- | \n
--van-tree-select-nav-item-padding | \n14px var(--van-padding-sm) | \n- | \n
--van-tree-select-item-height | \n48px | \n- | \n
--van-tree-select-item-active-color | \nvar(--van-primary-color) | \n- | \n
--van-tree-select-item-disabled-color | \nvar(--van-gray-5) | \n- | \n
--van-tree-select-item-selected-size | \n16px | \n- | \n