Chrome mint-ui 's loadMore pull-up load event cannot be triggered

clipboard.png
the effect above is on QQ Browser, but chrome cannot trigger

.
<mt-loadmore :auto-fill="loadMoreConfig.autoFill" :bottom-method="loadBottom"
                 :bottom-all-loaded="loadMoreConfig.allLoaded" ref="loadmore"
                 :bottomDistance="loadMoreConfig.bottomDistance">
                 </mt-loadmore>

config: in data

loadMoreConfig: {
          bottomDistance: 100,
          autoFill: false,
          allLoaded: false,
        }
Mar.19,2021

you need to set overflow-y: scroll; for the div of the package mt-loadmore


solve this problem while developing these days, and find the key to the problem in the morning:

clipboard.png

I will make a css of div div on the outside of the loadMore.
the point is that it doesn't work, and add a paragraph to the mounted:
$(".listBox"). Css ('height',$ (window). Height () +' px') to make sure that the height of the outer div is not greater than the height of the window so that I can achieve the effect I want.

Menu