消除router-link 的下划线问题

   <div class="small-size">
        <router-link to="/About">
        <img src="../../static/imgs/index/index02.jpg" alt="图片加载失败" class="img-shadow">
        <p class="mg3imageItem" >公司简介</p>
        <span style="font-size: 12px" class="font-style">
          广州安腾达化工科技有限公司成立于2012年,专注于创新材料、特殊树脂、高性能添加剂。
        </span>
        </router-link>
      </div>

使用router-link实现路由跳转,代码如上,

虽然能实现跳转了,但是文字带有了下划线,不好看

消除下划线,增加一下样式代码即可:

  a {
    text-decoration: none;
  }

  .router-link-active {
    text-decoration: none;
  }

效果如下

好记性不如烂笔头,每天记录一点点
原文地址:https://www.cnblogs.com/wayneliu007/p/10357647.html