// 右键会选中文字,为了美观将它禁用
#el-tree {
user-select: none;
background-color: transparent;
padding: 0;
}
// a标签移除下划线
a {
text-decoration: none;
color: #121314;
position: relative;
}
a:after {
content: '';
position: absolute;
z-index: -1;
top: 60%;
left: -0.1em;
right: -0.1em;
bottom: 0;
transition: top 200ms cubic-bezier(0, 0.8, 0.13, 1);
background-color: rgba(79, 192, 141, 0.5);
}
https://evanyou.me/