12345678910111213141516171819 |
- <template>
- <view class="loading">
- <uni-icons
- type="spinner-cycle"
- size="24"
- />
- </view>
- </template>
- <script setup>
- </script>
- <style lang="scss" scoped>
- .loading {
- // height: 60vh;
- // line-height: 60vh;
- margin-top: 20px;
- text-align: center;
- }
- </style>
|