小程序端工程代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
492 B

  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>