您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關vue中如何實現左側菜單,樹形圖遞歸的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
效果圖如下所示:
先說說遇到的坑,由于是子父組件,當時傳遞使用的是子父組件的傳遞,但是這時候只能獲取到第一層的數據,第二層往后獲取不到數據,踩了一下午坑以后才知道,子組件使用了遞歸組件,這時候他已經不能往父組件傳遞了,子傳父,只能逐層傳遞這時候已經隔層了,所以我使用了非子父組件傳遞,兩個頁面都引入bus.js,這里不懂的請百度。
bus.js
import Vue from 'vue' export default new Vue
父組件內容
<ul v-for="menuItem in theModel"> <my-tree :model="menuItem"></my-tree> </ul>
模擬后臺數據
theModel:[{ 'id': '1', 'menuName': '導航1', 'menuCode': '10', 'menuUrl':'', 'childMenus': [ { 'menuName': '用戶管理', 'menuCode': '11', 'menuUrl':'/home', 'menuPath':'', 'childMenus':[{ 'menuName': '11111', 'menuCode': '12', 'menuUrl':'/systemjuri', 'menuPath':'', 'childMenus': [] }] }, { 'menuName': '角色管理', 'menuCode': '12', 'menuUrl':'/systemjuri', 'menuPath':'', 'childMenus': [] }, { 'menuName': '菜單管理', 'menuUrl':'/systemmenu', 'menuCode': '13', 'menuPath':'http://10.63.195.214:8080/menuManage/html/index_3.html', 'childMenus':[] }] },{ 'id': '1', 'menuName': '導航2', 'menuCode': '10', 'childMenus':[] }],
父組件引入子組件
import myTree from './treeMenu.vue' export default { components: { myTree }, }
父組件接受子組件傳遞的數據
bus.$on("childEvent", function(transmit) {})
下面是子組件內容,子組件名稱treeMenu,name: 'treeMenu',
<template> <li> <span @click="toggle(model.menuName,model.menuUrl,model.menuPath)"> <i v-if="!isFolder" class="icon file-text">●</i> {{ model.menuName }} <i v-if="isFolder" class="icon" :class="[open ? 'folder-open': 'folder']"></i> </span> <ul v-show="open" v-if="isFolder"> <tree-menu v-for="item in model.childMenus" :model="item" :key="item.menuId"></tree-menu> </ul> </li> </template> <script> import bus from "./../../../static/js/bus"; export default { name: 'treeMenu', props: ['model'], data() { return { open: false, } }, computed: { isFolder() { return this.model.childMenus && this.model.childMenus.length } }, methods: { toggle(msg,menuUrl,menuPath) { if (this.isFolder) { this.open = !this.open } var json = { msg: msg, menuUrl: menuUrl,menuPath:menuPath }; bus.$emit("childEvent", json) }, } } </script> <style> ul { list-style: none; } i.icon { display: inline-block; width: 15px; height: 15px; background-repeat: no-repeat; vertical-align: middle; float: right; margin-top: 17px; margin-right:30px; } .icon.folder { background-image: url('./homeimg/left_1.png'); } .icon.folder-open { background-image: url('./homeimg/dowm_1.png'); } .icon.file-text { } ul li ul li .icon.folder { background-image: url('./homeimg/left_2.png'); } ul li ul li .icon.folder-open { background-image: url('./homeimg/down_2.png'); } .tree-menu li { line-height: 50px; } span{ display: block; width: 100%; height: 100%; } ul{ padding-left:10px; } ul li span{ text-indent: 10px; } ul li ul{ background:#ebf1f8; color:#1457a7; } li:hover{ cursor:pointer; } </style>
由于用了遞歸組件所以name需要和<tree-menu>
對應起來。
感謝各位的閱讀!關于“vue中如何實現左側菜單,樹形圖遞歸”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。