loading.vue 283 B

12345678910111213141516171819
  1. <template>
  2. <view class="loading">
  3. <uni-icons
  4. type="spinner-cycle"
  5. size="24"
  6. />
  7. </view>
  8. </template>
  9. <script setup>
  10. </script>
  11. <style lang="scss" scoped>
  12. .loading {
  13. // height: 60vh;
  14. // line-height: 60vh;
  15. margin-top: 20px;
  16. text-align: center;
  17. }
  18. </style>