您好,登錄后才能下訂單哦!
要使用Vant的TreeSelect組件,首先需要在項目中安裝Vant UI庫。可以通過npm或yarn來進行安裝:
npm install vant
或
yarn add vant
接下來,在需要使用TreeSelect組件的頁面中導入TreeSelect組件:
import { TreeSelect } from 'vant';
export default {
components: {
[TreeSelect.name]: TreeSelect,
},
}
然后在模板中使用TreeSelect組件,并傳入相應的數據:
<template>
<div>
<tree-select
:items="items"
:main-active-index="0"
:active-id="activeId"
@click-nav="onClickNav"
@click-item="onClickItem"
/>
</div>
</template>
<script>
export default {
data() {
return {
items: [
{
text: 'Group 1',
children: [
{ text: 'Option 1', id: 1 },
{ text: 'Option 2', id: 2 },
],
},
{
text: 'Group 2',
children: [
{ text: 'Option 3', id: 3 },
{ text: 'Option 4', id: 4 },
],
},
],
activeId: 1,
};
},
methods: {
onClickNav({ index }) {
console.log('click nav', index);
},
onClickItem({ id }) {
console.log('click item', id);
},
},
};
</script>
以上代碼示例中,items數組包含了樹形結構的數據,activeId表示當前選中的節點id。通過click-nav和click-item事件可以監聽導航欄和選項的點擊事件。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。