entryThree.vue 376 B

123456789
  1. <template>
  2. <div class="bg" style="width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; overflow: hidden">
  3. <a-spin :spinning="loading" />
  4. <div id="window3D" style="width: 100%; height: 100%; position: absolute; overflow: hidden"> </div>
  5. </div>
  6. </template>
  7. <script lang="ts" setup>
  8. defineProps<{ loading: boolean }>();
  9. </script>