Initial commit
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 3s

This commit is contained in:
HAM 2025-09-05 14:13:13 +07:00
parent ef9ae9eaf6
commit 39b388fc6e
14 changed files with 1686 additions and 1 deletions

5
app/app.vue Normal file
View file

@ -0,0 +1,5 @@
<template>
<div>
<NuxtPage></NuxtPage>
</div>
</template>

6
app/pages/about.vue Normal file
View file

@ -0,0 +1,6 @@
<script lang="ts"></script>
<template>
<div class="">
<h1>About page.</h1>
</div>
</template>

7
app/pages/index.vue Normal file
View file

@ -0,0 +1,7 @@
<script lang="ts"></script>
<template>
<div class="">
<h1>Hello world !!!</h1>
</div>
<div><a @click="navigateTo('/about')">about</a></div>
</template>