vue router-link下划线和颜色问题

使用router-link链接的文字,默认为蓝色并带下划线,很不好看。
在这里插入图片描述
解决方法:
<style scoped></style>中添加样式:

<style scoped>
.router-link-active {
  text-decoration: none;
  color: yellow;
}
a{
  text-decoration: none;
  color: white;
}
</style>

a指文字不带下划线且为白色,router-link-active指点击后变为黄色。
效果如图
在这里插入图片描述


版权声明:本文为weixin_43900888原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。