loading.js 254 B

1234567891011121314
  1. export default {
  2. props : {
  3. more : true,
  4. loading : true,
  5. clickName : ''
  6. },
  7. methods : {
  8. loadMore2() {
  9. let cbName = this.clickName || 'loadMore';
  10. this.$parent[cbName]();
  11. }
  12. }
  13. }