index.vue 325 B

12345678910111213141516
  1. <template>
  2. <!-- svg加载图 -->
  3. <div class="go-loading-svg go-flex-center">
  4. <img src="~@/assets/images/tips/loadingSvg.svg" alt="" />
  5. </div>
  6. </template>
  7. <style lang="scss" scoped>
  8. @include go('loading-svg') {
  9. width: 100%;
  10. height: 100%;
  11. background-color: transparent;
  12. img {
  13. height: 50px;
  14. }
  15. }
  16. </style>