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>