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

13 lines
192 B
Vue

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