diff --git a/docs/2.guide/2.directory-structure/1.components.md b/docs/2.guide/2.directory-structure/1.components.md index 1d9859ab15..a80512cd2f 100644 --- a/docs/2.guide/2.directory-structure/1.components.md +++ b/docs/2.guide/2.directory-structure/1.components.md @@ -1,13 +1,13 @@ --- navigation.icon: IconDirectory title: "components" -description: "The components/ directory is where you put all your Vue components." +description: "The components/ directory is where you put all your Vue components." head.title: "components/" --- # Components Directory -The `components/` directory is where you put all your Vue components which can then be imported inside your pages or other components ([learn more](https://vuejs.org/guide/essentials/component-basics.html#components-basics)). +The `components/` directory is where you put all your Vue components which can then be imported inside your pages or other components ([learn more](https://vuejs.org/guide/essentials/component-basics.html#components-basics)). Nuxt automatically imports any components in your `components/` directory (along with components that are registered by any modules you may be using). diff --git a/docs/2.guide/2.directory-structure/1.pages.md b/docs/2.guide/2.directory-structure/1.pages.md index 5c75634cf9..a2e35d8a7d 100644 --- a/docs/2.guide/2.directory-structure/1.pages.md +++ b/docs/2.guide/2.directory-structure/1.pages.md @@ -182,7 +182,7 @@ This file tree will generate these routes: ] ``` -To display the `child.vue` component, you have to insert the `` component inside `pages/parent.vue`: +To display the `child.vue` component, you have to insert the `` component inside `pages/parent.vue`: ```html{}[pages/parent.vue]