How to modify the lable color of el-form in element-ui?

how to modify the lable color of el-form in element-ui

Jan.10,2022

.el-form-item__label {color:red}
is written as global css, without adding scoped


is written in style without scoped,. It is recommended to add a separate class to avoid affecting other file styles
.wrapper {

.el-form-item__label {
    ...
  }

}

Menu