Nuxt/examples/layout-transitions/pages/index.vue

29 lines
429 B
Vue
Raw Normal View History

2017-09-08 10:42:00 +00:00
<template>
<div class="container">
<h1>Home page</h1>
<p>
<NuxtLink to="/about">
About page
</NuxtLink>
</p>
<p>
<NuxtLink to="/users">
Lists of users
</NuxtLink>
</p>
<p>
<NuxtLink to="/users-2">
Lists of users #2 (with `watch`)
</NuxtLink>
</p>
2017-09-08 10:42:00 +00:00
</div>
</template>
2018-01-17 08:38:11 +00:00
<script>
export default {
head: {
title: 'Home'
}
}
</script>