Vue 让一个东西永远处于最底部
mounted(){ this.$refs.chatMain.scrollTop = this.$refs.chatMain.scrollHeight // 监听window的resize事件 window.onresize = () => { this.$refs.chatMain.scrollTop = this.$refs.chatMain.scrollHeight }}