vue覆盖elementui样式
2019-12-11 本文已影响0人
银角大王__
新语法
.search ::v-deep {
display: flex;
.van-search {
width: 90%;
}
}
<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;
}