Enabling Auto-Discovery
Starting from v2.13, Nuxt can auto import your components when used in your templates. To activate this feature, set components: true in your configuration:
export default {
  components: true
}
 Using Components
Once you create your components in the components directory they will then be available throughout your app without the need to import them.
| components/
--| TheHeader.vue
--| TheFooter.vue
 <template>
  <div>
    <TheHeader />
    <Nuxt />
    <TheFooter />
  </div>
</template>
 Component Names
If you have components in nested directories such as:
| components/
--| base/
----| foo/
------| Button.vue
 The component name will be based on its own path directory and filename. Therefore, the component will be:
<BaseFooButton />
 Button.vue to be BaseFooButton.vue.)If you want to use a custom directory structure that should not be part of the component name, you can explicitly specify these directories:
| components/
--| base/
----| foo/
------| Button.vue
 components: {
  dirs: [
    '~/components',
    '~/components/base'
  ]
}
 And now in your template you can use FooButton instead of BaseFooButton.
<FooButton />
 Dynamic Imports
To dynamically import a component (also known as lazy-loading a component) all you need to do is add the Lazy prefix to the component name.
<template>
  <div>
    <TheHeader />
    <Nuxt />
    <LazyTheFooter />
  </div>
</template>
 This is particularly useful if the component is not always needed. By using the Lazy prefix you can delay loading the component code until the right moment, which can be helpful for optimizing your JavaScript bundle size.
<template>
  <div>
    <h1>Mountains</h1>
    <LazyMountainsList v-if="show" />
    <button v-if="!show" @click="show = true">Show List</button>
  </div>
</template>
<script>
export default {
  data() {
    return {
      show: false
    }
  }
}
</script>
 Cheatsheet
 
        Sébastien Chopin
       
 
        Nazaré da Piedade
       
 
        Nobu
       
 
        川音리오
       
 
        Maciek Palmowski
       
 
        Nestor Vera
       
 
        Daniel Roe
       
 
        Yue Yang
       
 
        Jeronimas
       
 
        Alessandro Carrano
       
 
        Clément Ollivier
       
 
        Alexander Lichter
       
 
        N3-rd
       
 
        Adrien Zaganelli
       
 
        Mag
       
 
        Stefan Huber
       
 
        Olga Bulat
       
 
        Paiva
       
 
        Florian Reuschel
       
 
        Savas Vedova
       
 
        Steven
       
 
        Vinícius Alves
       
 
        Kareem Dabbeet
       
 
        Valentín Costa
       
 
        Ryan Skinner
       
 
        Alex Hirzel
       
 
        Ajeet Chaulagain
       
 
        René Eschke
       
 
        Nico Devs
       
 
        Muhammad
       
 
        Naoki Hamada
       
 
        Tom
       
 
        Yann Aufray
       
 
        Anthony Chu
       
 
        Nuzhat Minhaz
       
 
        Lucas Portet
       
 
        Richard Schloss
       
 
        Bobby
       
 
        bpy
       
 
        Antony Konstantinidis
       
 
        Hibariya
       
 
        Jose Seabra
       
 
        Eze
       
 
        Florian Lefebvre
       
 
        Lucas Recoaro
       
 
        Julien SEIXAS