mirror of
https://github.com/BlossomiShymae/clean-cuts.git
synced 2025-12-06 18:20:47 +01:00
13 lines
278 B
Vue
13 lines
278 B
Vue
<script setup lang="ts">
|
|
const scrollTop = () => {
|
|
window.scrollTo(0, 0);
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<NuxtLink class="btn app-background text-light" @click="scrollTop">
|
|
<MaterialIcon name="arrow-up" :size="24"/> Back to top
|
|
</NuxtLink>
|
|
</div>
|
|
</template> |