Nuxt/examples/routes-transition/pages/about.vue
2016-11-21 19:53:11 +01:00

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>