Loading.vue 575 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <div
  3. v-show="loading"
  4. class="loading"
  5. >
  6. <div class="wrapper center">
  7. <a-spin>
  8. <a-icon
  9. slot="indicator"
  10. spin
  11. style="font-size: 30px"
  12. type="loading"
  13. />
  14. </a-spin>
  15. </div>
  16. </div>
  17. </template>
  18. <script>
  19. export default {
  20. name: 'Loading',
  21. props: {
  22. loading: {
  23. type: [Boolean, String],
  24. default: false
  25. }
  26. }
  27. }
  28. </script>
  29. <style scoped>
  30. </style>