scrollTop 滚动到某位置
document.documentElement.scrollTop=100
scrollTo,scrollBy,scroll滚动到某位置
this.$nextTick(() => {
this.$refs.messagelist.scrollTo(0, 1000)
})
scrollIntoView() 滚动到具体某元素
document.getElementById('ID').scrollIntoView();