| 123456789101112131415161718192021 |
- <template>
- <div class="loading">
- <img src="/images/all/loading.gif" alt="">
- </div>
- </template>
- <style scoped>
- .loading {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- width: 100%;
- height: 100%;
- z-index: 1000;
- text-align: center;
- }
- .loading img {
- position: relative;
- top: 40%;
- }
- </style>
|