修改el-input的边框

677 阅读1分钟

开发时想去掉el-input的边框,设置border无效,后面发现是box-shadow设置为none即可

.el-input__wrapper{
    box-shadow:none;
}