Nuxt/examples/with-pages/app.vue

19 lines
290 B
Vue
Raw Normal View History

2021-04-23 20:30:43 +00:00
<template>
<div>
<NuxtLink to="/">
Home
</NuxtLink>
<NuxtLink to="/about">
About
</NuxtLink>
<NuxtLink to="/parent">
Parent (index)
</NuxtLink>
<NuxtLink to="/parent/b">
Parent (b)
</NuxtLink>
2021-04-23 20:30:43 +00:00
<NuxtPage />
</div>
</template>