vue mint-loadmore 在手机上向上拖动后 不能释放,页面卡住的现象
<mt-loadmore :bottom-method="loadBottom" :bottom-all-loaded="allLoaded" @bottom-status-change="handleBotChange" ref="loadmore">
/*html*/
</mt-loadmore>
loadBottom () { var that = this; setTimeout(() => { // 重点在于 添加定时器 that.current++; // 请求页数 that.req_carlist(); // 接口请求 that.$refs.loadmore.onBottomLoaded(); }, 1000); },
没有添加setTimeout时,页面向上拖拽后,向上的箭头不释放,页面不能进行任何操作