nomore.vue 559 B

1234567891011121314151617181920212223242526272829303132
  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. created: function () {}
  27. };
  28. </script>
  29. <style>
  30. @import './nomore.css';
  31. </style>