This commit is contained in:
parent
ef9ae9eaf6
commit
39b388fc6e
14 changed files with 1686 additions and 1 deletions
5
app/app.vue
Normal file
5
app/app.vue
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<template>
|
||||
<div>
|
||||
<NuxtPage></NuxtPage>
|
||||
</div>
|
||||
</template>
|
||||
6
app/pages/about.vue
Normal file
6
app/pages/about.vue
Normal 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
7
app/pages/index.vue
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue