Nuxtjs Guideline: Performance — Use Lazy prefix for code splitting. Description: Lazy load components with Lazy prefix. Do: <LazyComponent> for below-fold. Don't: Eager load all components. Good Example: <LazyMountainsList v-if="show"/>. Bad Example: <MountainsList/> for hidden content. Severity: Medium. Docs: https://nuxt.com/docs/guide/directory-structure/components.