Loading.vue 492 B

123456789101112131415161718192021
  1. <template>
  2. <view class="Loads acea-row row-center-wrapper" v-if="loading || !loaded" style="margin-top: 20rpx;">
  3. <template v-if="loading">
  4. <view class="iconfont icon-jiazai loading acea-row row-center-wrapper"></view>
  5. 正在加载中
  6. </template>
  7. <template v-if="!loading">
  8. 上拉加载更多
  9. </template>
  10. </view>
  11. </template>
  12. <script>
  13. export default {
  14. name: "Loading",
  15. props: {
  16. loaded: Boolean,
  17. loading: Boolean
  18. }
  19. };
  20. </script>