mkarras

Results 17 comments of mkarras

@sun-ergo-s already did it @danielroe with https://github.com/nuxt/nuxt/issues/26425 🙂

The requests are also incorrectly called on client using Nuxt 3.6.3 after a default SSR page load. We fetch data in parallel with: ``` const [ { data: yData, error:...

@danielroe but im wondering why it works with Nuxt 3.5.3 but for 3.6.3 not. https://github.com/vuejs/core/issues/6638 is also present for Nuxt 3.5.3.

@danielroe updated to Nuxt 3.7.2 and the issue "useAsyncData is called another time on client when a page is server side rendered" introduced with Nuxt 3.6.3 is gone. The problem...

With the broken exclude feature the keep-alive feature at all can be problematic to use: If for example you want to exclude specific routes for security reasons (e.g. you don't...

I got the same problem with a custom link component using `vue-router` `4.1.6` under `vue` `3.2.45` with vite plugin `@vitejs/plugin-vue` `4.0.0`: _LinkComponent.vue_ ``` ``` In parent: ``` my link .custom-styling...

Hi @Pierrad not really but i found a workaround by using the with vue router 4 new useLink composable. You can find a example implementation here: https://github.com/vuejs/router/issues/1641