Sign in

简柏林 / thingskit-view · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Network
  • thingskit-view
  • src
  • components
  • GoLoading
  • index.vue
  • Initial commit
    a7f18193
    xp.Huang authored
    2023-02-20 11:03:39 +0800  
    Browse Files »
index.vue 325 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<template>
  <!-- svg加载图 -->
  <div class="go-loading-svg go-flex-center">
    <img src="~@/assets/images/tips/loadingSvg.svg" alt="" />
  </div>
</template>
<style lang="scss" scoped>
@include go('loading-svg') {
  width: 100%;
  height: 100%;
  background-color: transparent;
  img {
    height: 50px;
  }
}
</style>