Prefetching component downloads the code in the background, this is based on the assumption that the component will likely be used for rendering, enabling the component to load instantly if and when the user requests it. The component is downloaded and cached for anticipated future use without the user making an explicit request for it. UseDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/nuxt/nuxt/llms.txt
Use this file to discover all available pages before exploring further.
prefetchComponents to manually prefetch individual components that have been registered globally in your Nuxt app. By default Nuxt registers these as async components. You must use the Pascal-cased version of the component name.
Type Signature
Parameters
Component name(s) to prefetch. Can be a single component name string or an array of component names. Must use Pascal-case naming.
Examples
Prefetch a Single Component
Prefetch Multiple Components
Notes
Current implementation behaves exactly the same as
preloadComponents by preloading components instead of just prefetching. We are working to improve this behavior.On server,
prefetchComponents will have no effect.