错误写法:
<style lang="scss" scoped>
/deep/.el-table .warning-row {
background: oldlace;
}
</style>
正确写法:去掉scoped或增加一个不带scoped的style标签,将要修改的样式放在这个标签内即可生效。
<style lang="scss">
/deep/.el-table .warning-row {
background: oldlace;
}
</style>