1、调用
mounted(){
this.scrollToBottom();
}
2、方法
methods:{
scrollToBottom() {
this.$nextTick(() => {
setTimeout(function(){
let scrollTop = document.body.scrollHeight;
$('body,html').animate({scrollTop: scrollTop + "px"}, 1);
},300);
})
}
}