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.