1
0
mirror of https://github.com/nuxt/nuxt.git synced 2025-03-26 10:57:32 +00:00
Nuxt/examples/scroll-behavior/pages/about/contact.vue

14 lines
236 B
Vue

<template>
<div class="child">
<h1>Contact</h1>
<div class="spacer" style="width: 100%; height: 3000px; background: grey"/>
</div>
</template>
<script>
export default {
transition: 'fade',
scrollToTop: true
}
</script>