docs: fix typo on directory-structure/pages (#7601)

This commit is contained in:
Alper Doğan 2022-09-16 17:32:35 +03:00 committed by GitHub
parent 1ebdef77a6
commit 43d1eac09d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -327,7 +327,7 @@ Learn more about [`<NuxtLink>`](/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 <RouterOptions> {
#### 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 <RouterOptions> {
#### 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**.