PageLoading.vue 342 B

123456789101112131415161718192021
  1. <template>
  2. <div class="loading">
  3. <img src="/images/all/loading.gif" alt="">
  4. </div>
  5. </template>
  6. <style scoped>
  7. .loading {
  8. position: fixed;
  9. top: 0;
  10. left: 0;
  11. right: 0;
  12. width: 100%;
  13. height: 100%;
  14. z-index: 1000;
  15. text-align: center;
  16. }
  17. .loading img {
  18. position: relative;
  19. top: 40%;
  20. }
  21. </style>