2018-03-21(router-link样式/下划线)
2018-03-21 本文已影响0人
嘿喵heyMeow
- 点击之前的样式是和a标签一样
a {
text-decoration: none;
}
- 点击之后通过类router-link-active来改变样式
.router-link-active {
text-decoration: none;
}
a {
text-decoration: none;
}
.router-link-active {
text-decoration: none;
}