当前位置:   article > 正文

论el-menu自定义样式_el-menu为mode=vertical 自定义省略图标

el-menu为mode=vertical 自定义省略图标

最终效果:

原始效果:

相关代码:

  1. <!-- 菜单 -->
  2. <div class="button-manage-right">
  3. <el-menu
  4. :default-active="activeIndex"
  5. class="el-menu-demo"
  6. mode="horizontal"
  7. @select="handleSelect"
  8. >
  9. <el-menu-item
  10. v-for="item in currentCommandInfo.functionArr"
  11. :key="item.functionId"
  12. :index="item.functionId"
  13. >{{ item.functionName }}</el-menu-item
  14. >
  15. </el-menu>
  16. </div>
  1. <style lang="less" scoped>
  2. // 修改菜单的样式
  3. .button-manage-right {
  4. & ::v-deep .el-menu {
  5. background-color: transparent;
  6. }
  7. & ::v-deep .el-menu.el-menu--horizontal {
  8. height: 100%;
  9. border-bottom: none;
  10. }
  11. & ::v-deep .el-menu--horizontal > .el-menu-item {
  12. height: 100%;
  13. color: #fff;
  14. font-size: 14px;
  15. font-weight: bold;
  16. letter-spacing: 2px;
  17. border-top-left-radius: 5px;
  18. border-top-right-radius: 5px;
  19. display: flex;
  20. justify-content: center;
  21. align-items: center;
  22. }
  23. & ::v-deep .el-menu--horizontal > .el-menu-item:hover {
  24. background-color: #2c3c7a;
  25. border-bottom-color: #2c3c7a;
  26. }
  27. & ::v-deep .el-menu--horizontal > .el-menu-item.is-active {
  28. background-color: #2c3c7a;
  29. border-bottom-color: #2c3c7a;
  30. }
  31. }
  32. </style>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/113184
推荐阅读
相关标签
  

闽ICP备14008679号