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

docs: fix indentation in "Views" code blocks #8039

Merged
merged 1 commit into from Oct 7, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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