编译平台
pnpm
VUE版本
unibest(vue3)
运行平台
微信小程序
z-paging版本
2.8.7
问题描述
在unibest中使用z-paging,使用pnpm run dev:mp-weixin后微信小程序控制台报警告 Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./uni_modules/z-paging/components/z-paging/z-paging.wxss:73:48)
第73行的代码是
.zp-scroll-view-hide-scrollbar.data-v-eb016980 ::-webkit-scrollbar {
display: none;
-webkit-appearance: none;
width: 0 !important;
height: 0 !important;
background: transparent;
}
原因是因为微信小程序不支持 ::-webkit-scrollbar,请问可以优化一下这个问题,让其不再显示警告吗?