Vue 中要实现滚动条自动滚动到底部,需要使用 JavaScript 或者 CSS,通常是使用 JavaScript 来实现。
具体实现方法如下:
代码示例如下:
<template>
<div ref="scrollContainer" class="scroll-container">
</div>
</template>
<script>
export default {
mounted() {
this.scrollToBottom();
updated() {
this.scrollToBottom();
methods: {
scrollToBottom() {
this.$refs.scrollContainer.scrollTop = this.$refs.scrollContainer.scrollHeight;
</script>