feat: add initial routes

This commit is contained in:
eggy 2022-07-21 17:11:40 -04:00
parent d95b27b4fd
commit a4450071d2
5 changed files with 8 additions and 1 deletions

View File

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

1
pages/404.vue Normal file
View File

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

View File

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