美文网首页
vue 使用 /deep/ 修改样式

vue 使用 /deep/ 修改样式

作者: 前端技师胡帅博 | 来源:发表于2021-02-24 12:01 被阅读0次

vue组件中,在style设置为scoped时,里面写的样式对子组件是不生效的,此时可以使用 /deep/ 深度选择器。(不使用scoped,/deep/不生效)

<style scoped lang="less">

.devlist-content .top /deep/ .el-input__inner {
  background-color: transparent;
  color:#fff;
  border: 1px solid #404753;
}

/deep/ .el-table th {
  background-color: rgb(36, 37, 42);
  color: #fff;
}
</style>

相关文章

网友评论

      本文标题:vue 使用 /deep/ 修改样式

      本文链接:https://www.haomeiwen.com/subject/firkzktx.html