uni-app相关
在使用Hbuilder写uniapp项目,在真机实测发现滚动带滚动条

API中 scroll-view滚动条默认消失,后续在官方文档中找到解决方法
App.vue 增加如下样式可以去除 scroll-view 组件的滚动条(不支持nvue页面)
::-webkit-scrollbar {
display: none;
width: 0 !important;
height: 0 !important;
-webkit-appearance: none;
background: transparent;
}