Nuxt/examples/scroll-behavior/pages/another-long.vue

15 lines
300 B
Vue
Raw Normal View History

<template>
<div class="container">
<h1>Another long page</h1>
<div class="spacer" style="width: 100%; height: 3000px; background: darkgreen" />
<nuxt-link to="/">Home page</nuxt-link>
</div>
</template>
<script>
export default {
layout: 'default2',
scrollToTop: true
}
</script>