d394e1cd9b
* better workspace feature flag ops * user activity is correctly tracked * more fixes
13 lines
418 B
Vue
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>
|