您好,登錄后才能下訂單哦!
要使用Vant的DropdownMenu組件,首先需要在項目中引入Vant組件庫,并在需要使用DropdownMenu的頁面中引入DropdownMenu組件。
在頁面中使用DropdownMenu組件的示例如下:
<template>
<div>
<van-dropdown-menu v-model="activeKey">
<van-dropdown-item v-for="item in menuList" :key="item.key" :title="item.title">
<van-dropdown-item v-for="subItem in item.subMenu" :key="subItem.key" :title="subItem.title" />
</van-dropdown-item>
</van-dropdown-menu>
</div>
</template>
<script>
export default {
data() {
return {
activeKey: '1',
menuList: [
{
key: '1',
title: '菜單1',
subMenu: [
{ key: '1-1', title: '子菜單1' },
{ key: '1-2', title: '子菜單2' }
]
},
{
key: '2',
title: '菜單2',
subMenu: [
{ key: '2-1', title: '子菜單1' },
{ key: '2-2', title: '子菜單2' }
]
}
]
};
}
};
</script>
在上面的示例中,我們使用了Vant的DropdownMenu和DropdownItem組件,通過data中的數據來動態生成菜單和子菜單。通過v-model來綁定當前選中的菜單項,可以通過監聽activeKey的變化來執行相應的操作。
需要注意的是,以上示例為基本使用方式,具體的樣式和功能可以根據實際需求進行自定義配置。詳細的參數和事件可以參考Vant官方文檔。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。