Files
speckle-server/packages/frontend-2/components/presentation/viewer/PostSetup.vue
T
Kristaps Fabians Geikins d394e1cd9b fix: various presentations mode fixes related to resetting (#5635)
* better workspace feature flag ops

* user activity is correctly tracked

* more fixes
2025-10-03 12:39:59 +03:00

13 lines
418 B
Vue

<template>
<div class="presentation-viewer-post-setup h-full"><slot /></div>
</template>
<script setup lang="ts">
import { usePresentationViewerPostSetup } from '~/lib/presentations/composables/viewerPostSetup'
/**
* The only point of this component is to get around the stupid limitation where a component that injects() also can't provide() the same stuff back...
*/
usePresentationViewerPostSetup()
</script>