我有这样的nuxt-link
<nuxt-link to="/login" class="nuxtLinkStyle">Login</nuxt-link>
然后使用nuxtLinkStyle
类对其进行样式设置
.nuxtLinkStyle {
text-decoration: none;
color: inherit !important;
cursor: pointer;
}
但是将鼠标悬停在链接上时,光标不会显示指针,而是默认指针。任何提示如何做到这一点?