<router-link to="/" tag="span" style="{ cursor: pointer; }">Name</router-link>
But style is not applied and cursor remains text cursor when the mouse is over this element.
Full code:
<v-toolbar-title class="white--text">
<router-link to="/" tag="span" exact style="{ cursor: pointer; }">Name</router-link>
</v-toolbar-title>
Try this version. Bind the style
tag.
<router-link to="/" tag="span" exact :style="{ cursor: 'pointer'}">Name</router-link>
Working example.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With