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

13 lines
188 B
Vue
Raw Normal View History

<template>
<div class="container">
<h1>About page</h1>
2016-12-16 17:12:38 +00:00
<nuxt-link to="/">Home page</nuxt-link>
</div>
</template>
<script>
export default {
transition: 'bounce'
}
</script>