Nuxt/examples/scroll-behavior/pages/about/contact.vue

14 lines
241 B
Vue

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