App.vue 加如下样式可以去除 scroll-view
组件的滚动条
::-webkit-scrollbar {
display: none;
width: 0 !important;
height: 0 !important;
background: transparent;
-webkit-appearance: none;
}
App.vue 加如下样式可以去除 scroll-view
组件的滚动条
::-webkit-scrollbar {
display: none;
width: 0 !important;
height: 0 !important;
background: transparent;
-webkit-appearance: none;
}