loading.ux 425 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <div class="loading-wrap">
  3. <text>{{text}}</text>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. props: {
  9. text: {
  10. type: String,
  11. default: "加载ing..."
  12. }
  13. },
  14. }
  15. </script>
  16. <style lang="less" scoped>
  17. .loading-wrap {
  18. flex: 1;
  19. flex-direction: column;
  20. justify-content: center;
  21. align-items: center;
  22. margin-top: 80px;
  23. text {
  24. font-size: 26px;
  25. color: #999;
  26. }
  27. }
  28. </style>