mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-12-25 14:20:21 +08:00
16 lines
344 B
Vue
16 lines
344 B
Vue
<template>
|
|
<n-back-top :show="show" class="z-1000" />
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed } from 'vue';
|
|
import { useWindowScroll } from '@vueuse/core';
|
|
|
|
defineOptions({ name: 'GlobalBackTop' });
|
|
|
|
const { y: scrollY } = useWindowScroll();
|
|
|
|
const show = computed(() => scrollY.value > 180);
|
|
</script>
|
|
<style scoped></style>
|