| 123456789101112131415161718 |
- <script setup lang='ts'>
- </script>
- <template>
- <view class="loading-image">
- <image src="https://oss.xiaoxiongcode.com/static/home/loading.gif" />
- </view>
- </template>
- <style lang="scss" scoped>
- .loading-image {
- @apply w-full h-full fixed bg-[#000118] top-0 left-0 flex items-center justify-center;
- z-index: 10000;
- image {
- @apply object-cover w-[70vw];
- }
- }
- </style>
|