I use Nuxt 2 with Vue 2 and vuetify.
My vscode was updated and I am getting an eslint error with v-html.
The code is:
<v-list-item-title
v-html="`${parent.genFilteredText(item.nome)}`"
>
</v-list-item-title>
and the error is:
[vue/no-v-text-v-html-on-component]
Using v-html on component may break component's content.
Before this problem, I used
<!--eslint-disable vue/no-v-html-->
on top of my code and I had no problem
but now this is not enough.
I have tried
<!--eslint-disable vue/no-v-text-v-html-on-component-->
but no look
"rules": {}
add"vue/no-v-text-v-html-on-component": 0
– Aminta