一開始設置的是:
.menuLeft .el-menu-item:hover{
background: #6db6ff !important;
}
.menuLeft .el-submenu__title:hover {
background: #6db6ff !important;
}
但它只是hover事件,並不會使背景色懸停,一直存在。后來又設置了:
.menuLeft .el-menu-item.is-active {
background: #6db6ff !important;
}
.menuLeft .el-submenu__title.is-active {
background: #6db6ff !important;
}
很好的解決了此問題。
