这个只能自己去覆盖样式,通过元素审查查看原代码
.el-tree--highlight-current .el-tree-node.is-current>.el-tree-node__content {
background-color: #f0f7ff;
}我修改过
.el-tree-node__content:hover {
background-color: #66b1ff87;
}或者 类似如下
<style>
.el-tree-node__content {
background-color: #66b1ff87;
}
</style>对了,不要用<style scoped>
