这会产生一个带下划线的链接:
<li><router-link to="/hello">Hello</router-link></li>
我的理解是router-link
元素生成一个a
标签。
我在 CSS 中尝试过这些东西:
router-link{
text-decoration: none;
}
router-link a{
text-decoration: none;
}
router-link a{
text-decoration: none !important;
}
..但不幸的是,这些都不起作用。