Skip to content
This repository was archived by the owner on Apr 6, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/content/1.getting-started/3.views.md
Original file line number Diff line number Diff line change
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