useFetch and lazy option
Data fetching docs (https://nuxt.com/docs/getting-started/data-fetching#lazy) say:
When I use
should I expect a 3 seconds wait before navigation to the page containing this code?
I feel like I'm missing some piece of the puzzle here
I've created a simple example of this behaviours:
https://stackblitz.com/edit/github-7hutqh
By default, data fetching composables will wait for the resolution of their asynchronous function before navigating to a new page by using Vue’s Suspense. This feature can be ignored on client-side navigation with the lazy option. In that case, you will have to manually handle loading state using the pending value.
When I use
useFetch like this:should I expect a 3 seconds wait before navigation to the page containing this code?
I feel like I'm missing some piece of the puzzle here
I've created a simple example of this behaviours:
https://stackblitz.com/edit/github-7hutqh
