c-load-more.vue 590 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template>
  2. <view class="c-load-more-wrap">
  3. <u-loadmore iconColor="#fff" :color="color" :status="status"></u-loadmore>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. name:"c-load-more",
  9. data() {
  10. return {
  11. };
  12. },
  13. props: {
  14. color: {
  15. type: String,
  16. default: '#999'
  17. },
  18. status: {
  19. type: String,
  20. default: 'loading'
  21. },
  22. },
  23. computed:{
  24. },
  25. methods: {
  26. stopPrevent(){
  27. },
  28. },
  29. }
  30. </script>
  31. <style lang="scss" scoped>
  32. .c-load-more-wrap{
  33. padding: 10px 0;
  34. display: flex;
  35. justify-content: center;
  36. overflow: hidden;
  37. }
  38. </style>