mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 13:43:59 +00:00
28 lines
433 B
Vue
28 lines
433 B
Vue
<template>
|
|
<div class="container">
|
|
<h1>About page</h1>
|
|
<ul>
|
|
<li>
|
|
<NuxtLink to="/about/profile">
|
|
Profile
|
|
</NuxtLink>
|
|
</li>
|
|
<li>
|
|
<NuxtLink to="/about/contact">
|
|
Contact
|
|
</NuxtLink>
|
|
</li>
|
|
</ul>
|
|
<NuxtChild />
|
|
<NuxtLink to="/">
|
|
Home page
|
|
</NuxtLink>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
transition: 'fade'
|
|
}
|
|
</script>
|