Loading.vue 429 B

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