您好,登錄后才能下訂單哦!
這篇文章主要介紹“Vue如何實(shí)現(xiàn)嵌套菜單組件”的相關(guān)知識(shí),小編通過實(shí)際案例向大家展示操作過程,操作方法簡單快捷,實(shí)用性強(qiáng),希望這篇“Vue如何實(shí)現(xiàn)嵌套菜單組件”文章能幫助大家解決問題。
本文旨在使用Vue.js完成一個(gè)嵌套的菜單組件,使用mock.js對(duì)數(shù)據(jù)進(jìn)行模擬,并且最小化復(fù)現(xiàn)功能
安裝mock
cnpm i mockjs
//引入mockjs import Mock from 'mockjs' //使用mockjs模擬數(shù)據(jù) Mock.mock('/menuData', 'get', { "ret": 0, "data": [{ "id": 1, "name": "第一層", "children": [{ "name": "第二層" }, { "name": "第二層" }, { "name": "第二層" } ] }, { "id": 2, "name": "第一層", "children": [{ "name": "第二層" }, { "id": 3, "name": "第二層", "children": [{ "name": "第三層" }, { "name": "第三層" }, { "name": "第三層" } ] }, { "id": 4, "name": "第二層", "children": [{ "name": "第三層" }, { "name": "第三層" }, { "id": 5, "name": "第三層", "children": [{ "name": "第四層" }, { "name": "第四層" }, { "id": 6, "name": "第四層", "children": [{ "name": "第五層" }, { "name": "第五層" }, { "name": "第五層" } ] } ] } ] } ] } ] });
菜單組件
<!-- * @Author: byron * @Date: 2022-02-24 09:01:27 * @LastEditTime: 2022-02-24 10:50:38 --> <template> <div> <ul class="menu" v-for="item in data" :key="item.id"> <li class="subMenu" @click="showhd(item)" :class="[item.children ? 'color' : '']" > <span> {{ item.name }} {{ item.id }}</span> </li> <div class="child" v-if="item.id == currentId && openFlag"> <xxxx v-if="item.children" :data="item.children"></xxxx> </div> </ul> </div> </template> <script> export default { name: 'xxxx', components: {}, props: ['data'], data() { return { currentId: undefined, openFlag: false, } }, methods: { showhd(a) { console.log(this.openFlag) this.openFlag = !this.openFlag this.currentId = a.id console.log(this.currentId) console.log(this.openFlag) }, }, } </script> <style scoped> li { text-decoration: none; /* list-style: none; */ } .ul { overflow: hidden; } .head { display: none; } .show { display: block; } .color { color: brown; } </style>
使用菜單組件
<template> <div id="app"> <h2>嵌套組件的實(shí)現(xiàn)</h2> <HelloWorld :data="menu" /> </div> </template> <script> import HelloWorld from './components/HelloWorld.vue' import axios from 'axios' export default { name: 'App', components: { HelloWorld, }, data() { return { menu: [], } }, async created() { const { data: r } = await axios.get('/menuData') this.menu = r.data console.log(this.menu) }, } </script> <style> #app { font-family: Avenir, Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-align: center; color: #2c3e50; margin-top: 60px; } </style>
關(guān)于“Vue如何實(shí)現(xiàn)嵌套菜單組件”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí),可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會(huì)為大家更新不同的知識(shí)點(diǎn)。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。