Nuxt/examples/scroll-behavior/pages/about/contact.vue
renovate[bot] e934da3c36
chore(deps): update devdependency @nuxtjs/eslint-config to v5 (#8345)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Clark Du <clark.duxin@gmail.com>
2020-11-14 17:10:53 +00:00

14 lines
237 B
Vue

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