Loading.vue 425 B

123456789101112131415161718192021
  1. <script setup lang="ts">
  2. import { Loading as VanLoading } from "vant";
  3. </script>
  4. <template>
  5. <div class="loading flex-center" @touchstart.prevent>
  6. <VanLoading size="36" color="#1228B9" vertical>加载中...</VanLoading>
  7. </div>
  8. </template>
  9. <style scoped lang="scss">
  10. .loading {
  11. position: fixed;
  12. top: 0;
  13. left: 0;
  14. z-index: 10;
  15. width: 100vw;
  16. height: 100vh;
  17. background-color: rgba(0, 0, 0, 0.4);
  18. }
  19. </style>