您好,登錄后才能下訂單哦!
這篇文章主要講解了“vue怎么實現左側菜單樹形圖遞歸”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“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是一套用于構建用戶界面的漸進式JavaScript框架,Vue與其它大型框架的區別是,使用Vue可以自底向上逐層應用,其核心庫只關注視圖層,方便與第三方庫和項目整合,且使用Vue可以采用單文件組件和Vue生態系統支持的庫開發復雜的單頁應用。
感謝各位的閱讀,以上就是“vue怎么實現左側菜單樹形圖遞歸”的內容了,經過本文的學習后,相信大家對vue怎么實現左側菜單樹形圖遞歸這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。