123456789101112131415161718192021222324252627282930313233 |
- <template>
- <div
- v-show="loading"
- class="loading"
- >
- <div class="wrapper center">
- <a-spin>
- <a-icon
- slot="indicator"
- spin
- style="font-size: 30px"
- type="loading"
- />
- </a-spin>
- </div>
- </div>
- </template>
- <script>
- export default {
- name: 'Loading',
- props: {
- loading: {
- type: [Boolean, String],
- default: false
- }
- }
- }
- </script>
- <style scoped>
- </style>
|