preloadComponents to manually preload 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 preload. Can be a single component name string or an array of component names. Must use Pascal-case naming.
Examples
Preload a Single Component
Preload Multiple Components
Notes
On server,
preloadComponents will have no effect.