Name But the sty...">

VuetifyJS, router-link does not display as cursor

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

But the style is not applied, and the cursor remains the 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>
+4
source share
1 answer

Try this version. Bind the tag style.

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

Job example .

+3
source

Source: https://habr.com/ru/post/1682163/


All Articles