initial commit

This commit is contained in:
Mars 2024-08-25 20:36:40 -04:00
commit 392e9dec12
Signed by: pupbrained
GPG key ID: 874E22DF2F9DFCB5
17 changed files with 418 additions and 0 deletions

16
pages/about.vue Normal file
View file

@ -0,0 +1,16 @@
<script setup lang="ts">
const route = useRoute()
</script>
<template>
<div>
<h1>
Nuxt Routing set up successfully!
</h1>
<p>Current route: {{ route.path }}</p>
<a
href='https://nuxt.com/docs/getting-started/routing'
target='_blank'
>Learn more about Nuxt Routing</a>
</div>
</template>

14
pages/index.vue Normal file
View file

@ -0,0 +1,14 @@
<script setup lang="ts">
const route = useRoute()
</script>
<template>
<div>
<h1 c-text>
Nuxt Routing set up successfully!
</h1>
<p c-subtext>
Current route: {{ route.path }}
</p>
</div>
</template>