您的当前位置:首页正文

uni-app——uniapp 中 scroll-view 上下滑动卡顿

2024-11-30 来源:个人技术集锦

解决方案:设置高度为100%

        <scroll-view 
            refresher-background="lightgrey"
            scroll-y="true" 
            class="scroll-view-item"
           
		 >
.scroll-view-item{
  height: 100%;
  width: 100%;
}
显示全文