Nuxt Content 3 migration #12

Merged
eggy merged 81 commits from js into master 2022-08-10 18:38:39 -04:00
5 changed files with 8 additions and 1 deletions
Showing only changes of commit a4450071d2 - Show all commits

View File

@ -1,6 +1,6 @@
<template>
<div>
DEFAULT TEMPLATE
DEFAULT TEMPLATE LAYOUT
<slot />
</div>
</template>

1
pages/404.vue Normal file
View File

@ -0,0 +1 @@
<template>404!</template>

View File

@ -1,5 +1,7 @@
<template>
<main>
oi what's up
<!-- custom 404? -->
<ContentDoc />
</main>
</template>

3
pages/about.vue Normal file
View File

@ -0,0 +1,3 @@
<template>
<div>about</div>
</template>

1
pages/index.vue Normal file
View File

@ -0,0 +1 @@
<template>HELLO</template>