zammad/app/frontend/apps/mobile/components/layout/LayoutCustomNavigation.vue
2026-01-02 15:41:09 +02:00

23 lines
464 B
Vue

<!-- Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/ -->
<script setup lang="ts">
import { onBeforeUnmount, onMounted } from 'vue'
import { useCustomLayout } from './useCustomLayout.ts'
const { setCustomLayout } = useCustomLayout()
onMounted(() => {
setCustomLayout(true)
})
onBeforeUnmount(() => {
setCustomLayout(false)
})
</script>
<template>
<teleport to="[data-bottom-navigation]">
<slot />
</teleport>
</template>