mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
14 lines
236 B
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>
|