overthinkerrrr
overthinkerrrr
Explore posts from servers
NNuxt
Created by overthinkerrrr on 1/24/2025 in #❓・help
Error: EBUSY: resource busy or locked, access '\\.\pipe\nitro\worker-18784-12.sock' | Nuxt
No description
12 replies
PPrisma
Created by overthinkerrrr on 1/11/2025 in #help-and-questions
Significant Performance Gap: Prisma vs Supabase Client in Nuxt 3
No description
4 replies
NNuxt
Created by overthinkerrrr on 1/4/2025 in #❓・help
Issue when trying to add page transitions
I'm looking for help regarding page transitions in Nuxt. According to the Nuxt documentation, smooth page transitions can be achieved by setting the page transition properties. However, I've noticed that when loading the app or reloading the page, the transition effect does not occur. How can I resolve this issue or manually trigger the transition effect? Any insights or solutions would be appreciated!!!! I’ve tried:
---app.vue---
<template>
<NuxtPage :transition="{ name: 'page', mode: 'out-in' }"/>
</template>

---index.vue---
definePageMeta({
pageTransition: {
name: 'page',
mode: 'out-in',
appear: true,
}
});
---app.vue---
<template>
<NuxtPage :transition="{ name: 'page', mode: 'out-in' }"/>
</template>

---index.vue---
definePageMeta({
pageTransition: {
name: 'page',
mode: 'out-in',
appear: true,
}
});
5 replies