From 64f3748243f9b043d73000b6d6c91c909c1a449b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alper=20Do=C4=9Fan?= Date: Fri, 16 Sep 2022 15:19:20 +0300 Subject: [PATCH] docs: fix typo on directory-structure/pages --- docs/content/2.guide/2.directory-structure/1.pages.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/content/2.guide/2.directory-structure/1.pages.md b/docs/content/2.guide/2.directory-structure/1.pages.md index eb075917d17..aa03aa0582f 100644 --- a/docs/content/2.guide/2.directory-structure/1.pages.md +++ b/docs/content/2.guide/2.directory-structure/1.pages.md @@ -327,7 +327,7 @@ Learn more about [``](/api/components/nuxt-link) usage. ## Router Options -It is possible to cutomize [vue-router options](https://router.vuejs.org/api/interfaces/routeroptions.html). +It is possible to customize [vue-router options](https://router.vuejs.org/api/interfaces/routeroptions.html). ### Using `app/router.options` @@ -343,7 +343,7 @@ export default { #### Custom Routes -:StabilityEdge{title="custom routes"} +:StabilityEdge{title="Custom Routes"} You can optionally override routes using a function that accepts scanned routes and returns customized routes. If returning `null` or `undefined`, Nuxt will fallback to the default routes. (useful to modify input array) @@ -365,7 +365,7 @@ export default { #### Custom History (advanced) -:StabilityEdge{title="custom history"} +:StabilityEdge{title="Custom History"} You can optionally override history mode using a function that accepts base url and returns history mode. If returning `null` or `undefined`, Nuxt will fallback to the default history. @@ -402,7 +402,7 @@ export default defineNuxtConfig({ ### Hash Mode (SPA) -:StabilityEdge{title="hash mode"} +:StabilityEdge{title="Hash Mode"} You can enable hash history in SPA mode. In this mode, router uses a hash character (#) before the actual URL that is internally passed. When enabled, the **URL is never sent to the server** and **SSR is not supported**.