loading.vue 519 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <div class="loading-cont" v-if="loading">
  3. <img src="~@/assets/img/home/loading.gif" alt="">
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. props: {
  9. loading: {
  10. type: Boolean,
  11. default: false
  12. }
  13. },
  14. data() {
  15. return {
  16. }
  17. },
  18. methods:{
  19. },
  20. }
  21. </script>
  22. <style scoped lang='scss'>
  23. .loading-cont {
  24. position: absolute;
  25. left: 0;
  26. right: 0;
  27. top: 0;
  28. bottom: 0;
  29. z-index: 99;
  30. background: #fff;
  31. display: flex;
  32. align-items: center;
  33. justify-content: center;
  34. }
  35. </style>