聊天列表自动滚动到最下面
2021-03-18 本文已影响0人
兜兜里冒糖糖
watch: {
chatList() {
this.$nextTick(() => {
var h = this.$refs.ul.offsetHeight;
this.$refs.chatList.scrollTop = h;
})
}
},
watch: {
chatList() {
this.$nextTick(() => {
var h = this.$refs.ul.offsetHeight;
this.$refs.chatList.scrollTop = h;
})
}
},