Files
speckle-server/packages/frontend-2/components/viewer/Scope.vue
T
Kristaps Fabians Geikins b02a07e2b6 feat: Frontend 2.0 MVP
2023-05-08 10:47:01 +03:00

16 lines
265 B
Vue

<template>
<slot />
</template>
<script setup lang="ts">
import {
InjectableViewerState,
useSetupViewerScope
} from '~~/lib/viewer/composables/setup'
const props = defineProps<{
state: InjectableViewerState
}>()
useSetupViewerScope(props.state)
</script>