修改el-input 禁用状态下的字体颜色
<div class="input"><el-input class="rt-input" :disabled value="你好></el-input></div><style scoped>.rt-input /deep/ .el-input__inner {color: rgb(92, 112, 234) !important;cu
·
<div class="input"><el-input class="rt-input" :disabled value="你好></el-input></div>
<style scoped>
.rt-input /deep/ .el-input__inner {
color: rgb(92, 112, 234) !important;
cursor: pointer;
}
vue组件中,在style设置为scoped的时候,里面在写样式对子组件是不生效的,如果想让某些样式对所以子组件都生效,可以使用 /deep/ 深度选择器。***/deep/在scss中不可用***
更多推荐
已为社区贡献1条内容
所有评论(0)