VUE--ElementUI--动态菜单+路由(五)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VUE--ElementUI--动态菜单+路由(五)相关的知识,希望对你有一定的参考价值。
参考技术A 二、常见问题Vue ElementUi导航组件结合后台管理实现左侧菜单滚动不显示滚动条
1、代码例
<el-aside :width="Iconflag ? '200px' : '0px'">
<el-row style="width: 100%">
<el-col>
<div class="Text">后台管理系统</div>
//导航外新包一个盒子,除了Text类盒子不滚动外,其余导航滚动,并不显示滚动条
<div class="NavBox">
<el-menu
:default-active="$route.path"
text-color="#fff"
active-text-color="#ffd04b"
router
@open="handleOpen"
@close="handleClose"
>```
2、样式(清除滚动条的样式 sass格式)
```javascript
.NavBox
height: 100vh;
overflow-y: auto;
&::-webkit-scrollbar
display: none;
以上是关于VUE--ElementUI--动态菜单+路由(五)的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot + Vue + ElementUI 实现后台管理系统模板 -- 前端篇:使用 vue-router 进行动态加载菜单
SpringBoot + Vue + ElementUI 实现后台管理系统模板 -- 前端篇:使用 vue-router 进行动态加载菜单