index.vue 411 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div class="dingLoading">
  3. <img src="@/assets/img/loading.gif" alt="" />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: "loadingPage",
  9. data() {
  10. return {};
  11. },
  12. mounted() {},
  13. };
  14. </script>
  15. <style lang="scss" scoped>
  16. .dingLoading {
  17. text-align: center;
  18. width: 100%;
  19. img {
  20. display: inline-block;
  21. width: 152px;
  22. margin: 0 auto;
  23. padding-top: 100px;
  24. }
  25. }
  26. </style>