使用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指点击后变为黄色。
效果如图
在这里插入图片描述

Logo

为开发者提供学习成长、分享交流、生态实践、资源工具等服务,帮助开发者快速成长。

更多推荐