[Vuejs]-Nuxt3 app crashes when navigating to the same route with different param where page has $fetch (or useFetch)

1👍

Ok, apparently the problem was with some breaking change after updating to Nuxt 3.7.1 from 3.6.x. I had that code in /projects/list.vue:

<div @click="navigateTo(`/projects/${project.name}`)">
   <p>
      Clicking here is ok, navigation works.
   </p> 
   <nuxt-link :to="`/projects/${project.name}`">
      Clicking here causes crash in 3.7.1.
   </nuxt-link>
</div>
👤stealz

Leave a comment