From 1a7aa1b043d28a7d735aaba5ea78934a19e9ed15 Mon Sep 17 00:00:00 2001 From: Anthony Fu Date: Mon, 5 Jun 2023 17:03:06 +0200 Subject: [PATCH] docs: remove irregular spaces (#21380) --- docs/2.guide/2.directory-structure/1.components.md | 4 ++-- docs/2.guide/2.directory-structure/1.pages.md | 4 ++-- docs/2.guide/2.directory-structure/1.public.md | 2 +- docs/2.guide/2.directory-structure/3.package.md | 4 ++-- docs/3.api/1.composables/use-nuxt-app.md | 4 ++-- docs/3.api/2.components/2.nuxt-page.md | 2 +- docs/3.api/3.utils/abort-navigation.md | 2 +- docs/3.api/3.utils/define-nuxt-route-middleware.md | 2 +- docs/3.api/3.utils/update-app-config.md | 2 +- docs/6.bridge/1.overview.md | 2 +- 10 files changed, 14 insertions(+), 14 deletions(-) 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]