这篇文章主要为大家详细介绍了vue点击当前路由高亮小案例,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
本文实例为大家分享了vue点击当前路由高亮的具体代码,供大来1源gaodai#ma#com搞*代#码1网家参考,具体内容如下
功能展示:
组件代码:
标签上加exact
.router-link-active{ background: rgba(255,255,255,0.8); color: gray; }
<nav> <ul> <li> 博客写博客</li></ul></nav> ul{ list-style-type: none; text-align: center; margin:0; } li{ display: inline-block; margin:0 10px; } a{ color:rgb(102, 119, 204); text-decoration: none; padding:12px; border-radius: 5px; font-size:20px; } nav{ background: #eee; padding: 30px 0; margin-bottom: 40px; } .router-link-active{ background: rgba(255,255,255,0.8); color: gray; }
以上就是vue点击当前路由高亮小案例的详细内容,更多请关注gaodaima搞代码网其它相关文章!