Element UI 中 el-input 标签去掉边框、背景透明的一种办法

/deep/ .el-input__inner {
  border: none; 
  background-color: rgba(255, 255, 255, 0);
}

你可能感兴趣的:(vue.js,elementui,javascript)