Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

Commit

Permalink
docs: fix indentation in "Views" code blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
toniengelhardt committed Oct 7, 2022
1 parent 3218356 commit e254473
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/content/1.getting-started/3.views.md
Expand Up @@ -66,7 +66,7 @@ To use pages, create `pages/index.vue` file and add `<NuxtPage />` component to
```vue [pages/index.vue]
<template>
<div>
<h1>Welcome to the homepage</h1>
<h1>Welcome to the homepage</h1>
<AppAlert>
This is an auto-imported component
</AppAlert>
Expand Down Expand Up @@ -104,7 +104,7 @@ If you only have a single layout in your application, we recommend using app.vue
<template>
<div>
<AppHeader />
<slot />
<slot />
<AppFooter />
</div>
</template>
Expand All @@ -113,7 +113,7 @@ If you only have a single layout in your application, we recommend using app.vue
```vue [pages/index.vue]
<template>
<div>
<h1>Welcome to the homepage</h1>
<h1>Welcome to the homepage</h1>
<AppAlert>
This is an auto-imported component
</AppAlert>
Expand Down

0 comments on commit e254473

Please sign in to comment.