Files
speckle-server/packages/frontend-2/components/viewer/PostSetupWrapper.vue
T
Kristaps Fabians Geikins 4dae1569cd feat(fe2): invite + list workspace invites (#2629)
* list invites table

* invites list works

* update last reminded date on resend

* fix FE

* WIP invitedialog + updated debounced utility

* invite create works

* exclude users correctly

* more adjustments

* minor cleanup

* using workspace invite server role

* test fix

* fixed multiple root eslint issues

* minor adjustments
2024-08-12 11:30:01 +03:00

15 lines
566 B
Vue

<template>
<div><slot /></div>
</template>
<script setup lang="ts">
import { useViewerPostSetup } from '~~/lib/viewer/composables/setup/postSetup'
/**
* 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...
* So the Viewer root component should invoke `useSetupViewer()` to do all of the `injects()` and then this will invoke `useViewerPostSetup()` which
* will do extra setup that relies on the state being done and injectable.
*/
useViewerPostSetup()
</script>