Nuxt/examples/routes-transitions/pages/about.vue

15 lines
198 B
Vue

<template>
<div class="container">
<h1>About page</h1>
<NuxtLink to="/">
Home page
</NuxtLink>
</div>
</template>
<script>
export default {
transition: 'bounce'
}
</script>