loading.vue 368 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <view class="">
  3. <view class="loading-page">
  4. <u-loading mode="flower" size="80"></u-loading>
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. name: '',
  11. data() {
  12. return {
  13. };
  14. }
  15. };
  16. </script>
  17. <style lang="scss" scoped>
  18. .loading-page {
  19. position: absolute;
  20. top: 40%;
  21. left: 50%;
  22. transform: translate(-50%, -50%);
  23. }
  24. </style>