美文网首页
vue覆盖elementui样式

vue覆盖elementui样式

作者: 银角大王__ | 来源:发表于2019-12-11 10:38 被阅读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;
}

相关文章

网友评论

      本文标题:vue覆盖elementui样式

      本文链接:https://www.haomeiwen.com/subject/kvhogctx.html