1.html
<div ref="scrollRef" class="box">
<!-- 由内容撑起滚动条 -->
</div>
2.css
.box{
width: 100%;
overflow-x: scroll;
overflow-y: hidden;
&::-webkit-scrollbar {
display: none;
}
}
3.js
//获取完数据后,执行
let height = this.$refs.scrollRef.clientWidth;
this.$refs.scrollRef.scrollTo(height,0);