改变默认的router-link样式
默认样式的router-link自带下划线,而且是蓝色的,有时候我们需要自定义router-link的样式

a{
text-decoration: none;
color: #000;
}
.router-link-active {
text-decoration: none;
color: red;
}


所有评论(0)