12 lines
154 B
Vue
12 lines
154 B
Vue
<script setup lang="ts">
|
|
import { onMounted } from 'vue'
|
|
|
|
onMounted(() => {
|
|
window.scrollTo(0, 0)
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<RouterView />
|
|
</template>
|