Sifro
After upgrading from nuxt 3.6.5 to 3.13.0, new pages are inserted below old page
Okay in the end I found out, that the problem was that there was a
:key="$route.path"
attribute on the <NuxtPage/>
Element so it looked like this <NuxtPage :key="$route.path" />
. This worked fine before the update but broke after it. Now that I removed it, the transitions work like intended. I also cant seem to figure out why the key was put there in the first place but I guess it was a workaround for something that got fixed/changed during a update5 replies
After upgrading from nuxt 3.6.5 to 3.13.0, new pages are inserted below old page
So I painstakingly went through all components and pages, and wrapped those that returned multiple root elements in a div but sadly the issue persists. This site doesnt use layouts, I just have one app.vue but even that is wrapped in a div. Do you have any other suggestions?
5 replies