SceneWrapper.vue 195 B

12345678910
  1. <script setup lang="ts">
  2. </script>
  3. <template>
  4. <div class="w-full relative aspect-video rounded-lg overflow-hidden">
  5. <ClientOnly>
  6. <slot></slot>
  7. </ClientOnly>
  8. </div>
  9. </template>