您好,登錄后才能下訂單哦!
Vue中怎么遞歸多級菜單,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。
考慮以下菜單數(shù)據(jù):
[ { name: "About", path: "/about", children: [ { name: "About US", path: "/about/us" }, { name: "About Comp", path: "/about/company", children: [ { name: "About Comp A", path: "/about/company/A", children: [ { name: "About Comp A 1", path: "/about/company/A/1" } ] } ] } ] }, { name: "Link", path: "/link" } ];
需要實(shí)現(xiàn)的效果:
首先創(chuàng)建兩個組件 Menu 和 MenuItem
// Menuitem <template> <li class="item"> <slot /> </li> </template>
MenuItem 是一個 li 標(biāo)簽和 slot 插槽,允許往里頭加入各種元素
<!-- Menu --> <template> <ul class="wrapper"> <!-- 遍歷 router 菜單數(shù)據(jù) --> <menuitem :key="index" v-for="(item, index) in router"> <!-- 對于沒有 children 子菜單的 item --> <span class="item-title" v-if="!item.children">{{item.name}}</span> <!-- 對于有 children 子菜單的 item --> <template v-else> <span @click="handleToggleShow">{{item.name}}</span> <!-- 遞歸操作 --> <menu :router="item.children" v-if="toggleShow"></menu> </template> </menuitem> </ul> </template> <script> import MenuItem from "./MenuItem"; export default { name: "Menu", props: ["router"], // Menu 組件接受一個 router 作為菜單數(shù)據(jù) components: { MenuItem }, data() { return { toggleShow: false // toggle 狀態(tài) }; }, methods: { handleToggleShow() { // 處理 toggle 狀態(tài)的是否展開子菜單 handler this.toggleShow = !this.toggleShow; } } }; </script>
Menu 組件外層是一個 ul 標(biāo)簽,內(nèi)部是 vFor 遍歷生成的 MenuItem
這里有兩種情況需要做判斷,一種是 item 沒有 children 屬性,直接在 MenuItem 的插槽加入一個 span 元素渲染 item 的 title 即可;另一種是包含了 children 屬性的 item 這種情況下,不僅需要渲染 title 還需要再次引入 Menu 做遞歸操作,將 item.children
作為路由傳入到 router prop
最后在項(xiàng)目中使用:
<template> <div class="home"> <menu :router="router"></menu> </div> </template> <script> import Menu from '@/components/Menu.vue' export default { name: 'home', components: { Menu }, data () { return { router: // ... 省略菜單數(shù)據(jù) } } } </script>
最后增加一些樣式:
MenuItem:
<style lang="stylus" scoped> .item { margin: 10px 0; padding: 0 10px; border-radius: 4px; list-style: none; background: skyblue; color: #fff; } </style>
Menu:
<style lang="stylus" scoped> .wrapper { cursor: pointer; .item-title { font-size: 16px; } } </style>
Menu 中 ul 標(biāo)簽內(nèi)的代碼可以單獨(dú)提取出來,Menu 作為 wrapper 使用,遞歸操作部分的代碼也可以單獨(dú)提取出來
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進(jìn)一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。