vue-router : how to remove underline from router-link vue-router : how to remove underline from router-link vue.js vue.js

vue-router : how to remove underline from router-link


If anyone using Vuetify comes across this question, note that the styling below do not work due to Vuetify's in built styles. You must instead use inline CSS styling:

<router-link style="text-decoration: none; color: inherit;" to="/hello">


It is Converted into <a ...
So to remove the underline try this

a { text-decoration: none; }


You can try targeting the list item link like this:

li a {    text-decoration: none;}