Gsap page async transitions #116
-
Hello, thanks for sharing! Essei |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Hello! Nuxt is smart and it tries it's best to figure out itself what to preload, prefetch and that not to.
But for more control it exposes some useful functions to preload components or entire pages Also if you want to do async fetching or computation, you can use My site uses different async approach, because of issues with smooth scroll (locomotive scroll at time writing) and images. The page was jumping around when new image was loaded. You probably can preload images in In project page component you can see that in Each way, Hope it helps! and sorry for so long reply 😅 |
Beta Was this translation helpful? Give feedback.
Hello!
Nuxt is smart and it tries it's best to figure out itself what to preload, prefetch and that not to.
But for more control it exposes some useful functions to preload components or entire pages Also if you want to do async fetching or computation, you can use
useFetch
oruse…