nomore.vue 530 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <view class="no-more">
  3. <text v-if="isLoading">正在加载 ...</text>
  4. <text v-else>没有更多信息啦 ~</text>
  5. </view>
  6. </template>
  7. <script>
  8. // component/nomore/nomore.js
  9. export default {
  10. data() {
  11. return {};
  12. },
  13. /**
  14. * 组件的属性列表
  15. */
  16. props: {
  17. isLoading: {
  18. type: Boolean,
  19. default: false
  20. }
  21. },
  22. /**
  23. * 组件的方法列表
  24. */
  25. methods: {}
  26. };
  27. </script>
  28. <style>
  29. @import './nomore.css';
  30. </style>