index.vue 800 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <view :class="'i-class i-load-more ' + (loading ? '' : 'i-load-more-line')">
  3. <view class="i-load-more-loading" v-if="loading"></view>
  4. <view class="i-load-more-tip">
  5. <view v-if="tip !== ''">{{ tip }}</view>
  6. <view v-else-if="tip === '' && loading">正在加载 ...</view>
  7. <view class="i-load-more-empty" v-else></view>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. data() {
  14. return {};
  15. },
  16. externalClasses: ['i-class'],
  17. props: {
  18. loading: {
  19. type: Boolean,
  20. default: true
  21. },
  22. tip: {
  23. type: String,
  24. default: ''
  25. }
  26. },
  27. methods: {},
  28. created: function () {}
  29. };
  30. </script>
  31. <style>
  32. @import './index.css';
  33. </style>