vue 가 페이지 에 들 어 갈 때 스크롤 바 는 항상 아래쪽 코드 인 스 턴 스 입 니 다.
mounted () {
this.scrollToBottom();
},
//
updated:function(){
this.scrollToBottom();
},
methods:{
scrollToBottom: function () {
this.$nextTick(() => {
var container = this.$el.querySelector(".chatBox-content-demo");
container.scrollTop = container.scrollHeight;
})
}
}
스크롤 바 스타일:
::-webkit-scrollbar {
width: 5px;
height: 5px;
}
::-webkit-scrollbar-track-piece {
background-color: rgba(0, 0, 0, 0.2);
-webkit-border-radius: 6px;
}
::-webkit-scrollbar-thumb:vertical {
height: 5px;
background-color: rgba(125, 125, 125, 0.7);
-webkit-border-radius: 6px;
}
::-webkit-scrollbar-thumb:horizontal {
width: 5px;
background-color: rgba(125, 125, 125, 0.7);
-webkit-border-radius: 6px;
}
하면,만약,만약...
created() mounted ()
mounted () {
this.$nextTick(() => {
this._initScroll();
let allLi=this.$refs.chatcontheight.querySelectorAll("li");
this.chartScroll.scrollToElement(allLi[allLi.length-1],0);
});
},
//
updated:function(){
this.$nextTick(() => {
this._initScroll();
let allLi=this.$refs.chatcontheight.querySelectorAll("li");
this.chartScroll.scrollToElement(allLi[allLi.length-1],0);
});
},
methods:{
_initScroll(){
this.chartScroll=new BScroll(this.$refs.chatcontheight,{
click:true
})
}}
<div ref="$refs.chatcontheight" style="overflow: hidden;">
<ul>
<li></li>
</ul>
</div>
위 에서 말 한 것 은 편집장 이 소개 한 vue 가 페이지 에 들 어 갈 때 스크롤 바 는 항상 밑 에 상세 하 게 통합 되 어 여러분 에 게 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 시 면 저 에 게 메 시 지 를 남 겨 주세요.편집장 은 신속하게 답 해 드 리 겠 습 니 다.여기 서도 저희 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Fastapi websocket 및 vue 3(Composition API)1부: FastAPI virtualenv 만들기(선택 사항) FastAPI 및 필요한 모든 것을 다음과 같이 설치하십시오. 생성main.py 파일 및 실행 - 브라우저에서 이 링크 열기http://127.0.0.1:...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.