mpvue icon indicating copy to clipboard operation
mpvue copied to clipboard

父页面添加scoped之后,无法修改子组件样式

Open missy0u opened this issue 6 years ago • 3 comments

父页面:

<style scoped>
.panel-bd /deep/ img {
  width: 96rpx;
  height: 96rpx;
}

.panel-bd >>> img {
  width: 96rpx;
  height: 96rpx;
}
</style>

子组件:

<div class="panel-bd">
        <img :src="obj.imgUrl">
</div>

参考

missy0u avatar Apr 27 '18 03:04 missy0u

+1 ,还希望官方尽快解决,辛苦~

PerseveranceZ avatar May 30 '18 07:05 PerseveranceZ

都9102了,还是不能渗透样式

greatWeber avatar Mar 07 '19 09:03 greatWeber

/deep/ 参考 vue 文档

summxu avatar Feb 12 '20 11:02 summxu