We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example:
<template> <nuxt-link :to="`#`">button</nuxt-link> </template> <style scoped> a { color: red; } </style>
nuxt-link is converted to a tag, but I get error: The selector `a` is unused. Please support.
nuxt-link
a
The selector `a` is unused
Maybe something like this in the settings:
'vue-scoped-css/no-unused-selector': ['warn', { 'equalTags': { 'nuxt-link': 'a', 'n-link': 'a', 'NuxtLink': 'a', 'NLink': 'a', 'router-link': 'a' }, }]
The text was updated successfully, but these errors were encountered:
Whether <nuxt-link> has an a tag depends on the implementation, so I think you need to give it a new class.
<nuxt-link>
<template> <nuxt-link class="foo" :to="`#`">button</nuxt-link> </template> <style scoped> .foo { color: red; } </style>
So I don't want to add that option.
Sorry, something went wrong.
It’s maybe a better css design, but still, as you said it depends on the implementation so it makes sense to enable it as a custom option.
What about <router-link tag="xy">? This should be clear which tag it's using.
<router-link tag="xy">
Any updates on this?
No branches or pull requests
For example:
nuxt-link
is converted toa
tag, but I get error:The selector `a` is unused
.Please support.
Maybe something like this in the settings:
The text was updated successfully, but these errors were encountered: