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

14 lines
241 B
Vue
Raw Normal View History

2018-01-19 13:07:38 +00:00
<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>