Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VuetifyJS, router-link not showing up as a cursor

<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>
like image 279
Stephane Paquet Avatar asked Jul 24 '17 21:07

Stephane Paquet


1 Answers

Try this version. Bind the style tag.

<router-link to="/" tag="span" exact :style="{ cursor: 'pointer'}">Name</router-link>

Working example.

like image 67
Bert Avatar answered Oct 14 '22 11:10

Bert