mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 13:43:59 +00:00
8666b53998
[skip ci]
17 lines
310 B
Vue
17 lines
310 B
Vue
<template>
|
|
<div class="container">
|
|
<h1>Another long page</h1>
|
|
<div class="spacer" style="width: 100%; height: 3000px; background: darkgreen" />
|
|
<NuxtLink to="/">
|
|
Home page
|
|
</NuxtLink>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
layout: 'default2',
|
|
scrollToTop: true
|
|
}
|
|
</script>
|