Loading.vue 285 B

12345678910111213141516
  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. text-align: center;
  9. background: #fff;
  10. >img {
  11. width: .64rem;
  12. height: .64rem;
  13. margin: .2rem 0;
  14. }
  15. }
  16. </style>