跳转到内容

vue覆盖elementui样式

html
<el-dialog title="人员列表" class="ebvdia" :visible.sync="ToastView"  width="80%">
      <el-form :model="EnterpriseDetails"  class="table" label-width="120px">
      </el-form>
 </el-dialog>

// 使用了scss 或者 less 

.ebvdia /deep/ {
  margin-top: -5vh;
  .el-dialog__body {
    height: 600px !important;
  }
}

//未使用scss less
.ebvdia >>> .el-dialog__body  {
  margin-top: -5vh;
  height: 600px !important;
}