explorer-app/layouts/detail.vue

24 lines
375 B
Vue
Raw Permalink Normal View History

2023-12-19 18:43:42 +01:00
<script lang="ts" setup>
const { showBar } = storeToRefs(useNavigaiton())
const swipeEl = ref()
const { y } = useWindowScroll()
watch(y, (newY, oldY) => {
if (newY > oldY && newY > 32)
showBar.value = false
else
showBar.value = true
})
</script>
<template>
<div
ref="swipeEl"
h-full
w-full
>
2023-12-19 18:43:42 +01:00
<Navigation />
<slot />
</div>
</template>