mirror of
https://github.com/web3privacy/explorer-app.git
synced 2024-10-15 16:46:26 +02:00
19 lines
360 B
Vue
19 lines
360 B
Vue
<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>
|
|
<Navigation />
|
|
<slot />
|
|
</div>
|
|
</template>
|