el-dropdown默认的样式里面,已被选中行的背景颜色难以分辨。所以可以手动修改样式:
<style>
.el-dropdown-menu__item {
color: #606266;
&:hover {
background-color: #e9e9ea;
}
}
.el-dropdown-menu__item.is-active {
color: #409EFF;
background-color: #ecf5ff;
}
.el-dropdown-menu__item.is-disabled {
color: #409EFF;
background-color: #ecf5ff;
}
</style>