移动端清除滚动条在全局(app.vue)中添加样式即可
::-webkit-scrollbar{
width: 0;
height: 0;
color: transparent;
display: none;
}
#app{
width: 100vw;
height: 100vh;
overflow-y: auto;
}
解决定位遮挡的列表内容
padding-bottom: 5vh;
::-webkit-scrollbar{
width: 0;
height: 0;
color: transparent;
display: none;
}
#app{
width: 100vw;
height: 100vh;
overflow-y: auto;
}
padding-bottom: 5vh;