其他分享
首页 > 其他分享> > Vue项目中更改Vux组件中的样式

Vue项目中更改Vux组件中的样式

作者:互联网

Vue项目中更改Vux组件中的样式

因为某些样式不符合自己要求,需要更改Vux组件内部样式.

初次尝试

<style lang="less" scoped>
.popup-picker-no-line  .weui-cells:before {
  border-top: none;
}

.popup-picker-no-line  .weui-cells:after {
  border-bottom: none;
}
</style>

方案1:全局style

.popup-picker-no-line  .weui-cells:before {
  border-top: none;
}

.popup-picker-no-line  .weui-cells:after {
  border-bottom: none;
}

方案2:使用深度选择器

<style scoped>
.popup-picker-no-line /deep/ .weui-cells:before {
  border-top: none;
}

.popup-picker-no-line /deep/ .weui-cells:after {
  border-bottom: none;
}
</style>

总结:还是使用深度选择器比较好,比较灵活。

标签:picker,Vue,no,cells,weui,popup,组件,line,Vux
来源: https://www.cnblogs.com/songliquan/p/12784355.html