Nuxt/test/fixtures/basic/pages/scroll-to-top/watch-query-array.vue

20 lines
251 B
Vue

<template>
<div>
<NuxtLink to="/scroll-to-top/watch-query-true?test=1">
go to the same page
</NuxtLink>
</div>
</template>
<script>
export default {
watchQuery: ['test']
}
</script>
<style>
div {
margin-top: 1500px;
}
</style>