
效果圖
- 當(dāng)我用uview庫的時候,我想修改一下輪博的小點點距離下邊的距離.當(dāng)時用的下邊的代碼
// 修改第三方庫style屬性
/deep/.u-swiper-indicator{
bottom: 100rpx !important;
}
- 上面代碼在H5和App中都是沒問題的,但是在小程序上沒效果,后來查文檔發(fā)現(xiàn),需要在和data同級的對象中加下面這個方法
options: { styleIsolation: 'shared' }
- ok