I was using this kind of NuxtLink with Nuxt 2, that was working perfectly well (using the path
option) :
<NuxtLink
:to="{
path: '/articles/' + article.attributes.slug + '/',
}"
>
</NuxtLink>
In Nuxt 3, the anchor tag in the browser still display the right path, but when I click on it, nothing happen.
If I go in Nuxt DevTools, here is what I get :
Feel free to ask for additional informations.