mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 17:43:59 +00:00
19 lines
202 B
Vue
19 lines
202 B
Vue
|
<template>
|
||
|
<div>
|
||
|
<NuxtLink to="/scroll-to-top/other">
|
||
|
go to other
|
||
|
</NuxtLink>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
div {
|
||
|
margin-top: 1500px;
|
||
|
}
|
||
|
</style>
|