export default { data() { return { }; }, onReachBottom() { try { if (this.initModule && this.initModule.length > 0) { this.initModule.forEach(el => { if (this.$refs[`${el.component}Ref`][0].reachBottom) { this.$refs[`${el.component}Ref`][0].onReachBottom() } }) } } catch (e) { console.log('触摸底部 ----------: ' + e.message) } }, }