mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
23 lines
464 B
Vue
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>
|