首页 > 技术文章 > vue 中router-link下方的横线如何去除

sinceForever 2020-01-03 17:47 原文

vue 中router-link下方的横线如何去除

1 .router-link-active {     //点击时去掉下划线
2   text-decoration: none;
3 }
4 
5 a {
6   text-decoration: none; //去掉原有链接文字下划线
7 }

 

推荐阅读