vue elementUI封装的无限多级导航菜单(递归循环)

需要封装成两个文件:

  1. menu/index.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<template>
<el-menu
class="box-card"
unique-opened
:collapse="$store.state.isCollapse"
:default-active="$store.state.nowPage"
background-color="#2f3332"
text-color="#fff"
active-text-color="#4af4d2"
>
<MenuList :data="$store.state.permissionMenu"></MenuList>
</el-menu>
</template>

<script>
/**
* @author 全易
* @time 2020-10-05 16:38:30 星期一
* @description 菜单栏
*/
import MenuList from "./list";

export default {
name: "Menu",
components: {
MenuList,
},
};
</script>

<style lang="less" scoped>
.no-menus {
color: #ffffff;
padding: 15px;
}
.fa {
vertical-align: middle;
margin-right: 5px;
width: 24px;
text-align: center;
}
.box-card {
border: none;
height: 100vh;
overflow: auto;
.menu {
height: calc(100vh - 175px);
overflow: auto;
}
.often {
z-index: 1;
position: sticky;
top: 0;
color: #ffffff;
padding: 10px 0;
border-bottom: 1px solid #6b6b6b;
background-color: #2f3332;
.title {
margin-bottom: 8px;
padding-left: 8px;
}
.item {
height: 28px;
line-height: 28px;
font-size: 12px;
}
}
}
</style>

  1. menu/list.vue
    注意这个文件用到了vue-fragment插件,需要安装
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    <template>
    <vue-fragment class="menu-list">
    <template v-for="item in data">
    <el-menu-item
    v-if="item.children.length < 1"
    :key="item.menuIdStr"
    :index="item.menuIdStr"
    @click="goPage(item)"
    >
    <i :class="item.icon"></i>
    <span slot="title">{{ item.menuName }}</span>
    </el-menu-item>
    <el-submenu v-else :key="item.menuIdStr" :index="item.menuIdStr">
    <template slot="title">
    <i :class="item.icon"></i>
    <span slot="title">{{ item.menuName }}</span>
    </template>
    <MenuList :data="item.children"></MenuList>
    </el-submenu>
    </template>
    </vue-fragment>
    </template>

    <script>
    /**
    * @author 全易
    * @time 2021-04-26 08:48:57 星期一
    * @description 菜单栏列表
    */
    import { Fragment } from 'vue-fragment'

    export default {
    name: "MenuList",
    components: { 'vue-fragment':Fragment },
    props: {
    data: {
    type: Array,
    default() {
    return [];
    },
    },
    },
    methods: {
    // 跳转页面
    goPage(page) {
    // console.log(page);
    if (this.$route.path !== page.url) {
    this.$router.push(page.url);
    }
    },
    },
    };
    </script>

    <style lang="less" scoped>
    .fa {
    vertical-align: middle;
    margin-right: 5px;
    width: 24px;
    text-align: center;
    }
    </style>

两个文件封装完成,在使用的地方引入就好了


也可以直接安装个组件 npm install element-navmenu_vue


vue elementUI封装的无限多级导航菜单(递归循环)
https://github.com/chergn/chergn.github.io/ac2c6168586a/
作者
全易
发布于
2024年3月28日
许可协议