pages/[page].vue page where I am using data loader (but useAsyncData and useFetch yield the same result) and the goal is simple, user navigate to this page, we load the data from database and display them.http://localhost:3000/[page] is blocked. Or rather the navigation to the page is blocked, until the Promise is resolved. And the pending <PageSkeleton /> is not shown.loading.tsx component to display loading state, or in layout.tsx wrap the page component in <Suspense /> and display fallback loading skeleton.<div><slot /></div> in <Suspense /> and nothing happened. <Suspense /> on the pages/[page].vue page.