Vue中判断页面是否到达底部

第一步:

mounted() {
	    window.addEventListener('scroll', this.handleScroll)
	  },

第二步:

methods:{
    handleScroll() {
		    const scrollTop = document.documentElement.scrollTop || document.body.scrollTop
		    const scrollHeight = document.documentElement.scrollHeight || document.body.scrollHeight
		    const clientHeight = document.documentElement.clientHeight || window.innerHeight
		    if (scrollTop + clientHeight >= scrollHeight) {
		    	加载更多。。。
		      	
		    }
		},
}

你可能感兴趣的:(Vue,vue.js,javascript,前端)