docs: add missing periods

This commit is contained in:
Timur Bolotov 2022-08-07 11:02:31 +02:00 committed by Pooya Parsa
parent 4623525f3f
commit 2cbdc5c07f
3 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@ If you have a `pages/` folder, `useRouter` is identical in behavior to the one p
- **addRoute:** Add a new route to the router instance. `parentName` can be provided to add new route as the child of an existing route.
- **removeRoute:** Remove an existing route by its name.
- **getRoutes:** Get a full list of all the route records.
- **hasRoute:** Checks if a route with a given name exists
- **hasRoute:** Checks if a route with a given name exists.
## Based on history API

View File

@ -46,7 +46,7 @@ export default {
pages: undefined,
/**
* Manually disable nuxt telemetry
* Manually disable nuxt telemetry.
*
* @see [Nuxt Telemetry](https://github.com/nuxt/telemetry) for more information.
*

View File

@ -69,7 +69,7 @@ export interface ScanDir {
extendComponent?: (component: Component) => Promise<Component | void> | (Component | void)
/**
* If enabled, registers components to be globally available
* If enabled, registers components to be globally available.
*
*/
global?: boolean