loading.vue 360 B

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