index.js 237 B

12345678910111213141516
  1. // lionfish_comshop/components/load-more/index.js
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. loading: {
  8. type: Boolean,
  9. value: true
  10. },
  11. tip: {
  12. type: String,
  13. value: ""
  14. }
  15. }
  16. })