element-ui 去除input的框

发布时间 2023-06-28 14:59:29作者: 菜鸟辉哥
::v-deep {

    .el-input__inner {
      border: 0;
      border-radius: 0px;

      // &:focus {
      //   border-bottom: 1px solid #409eff;
      // }
    }

    .el-textarea__inner {
      resize: none;
      /* 这个是去掉 textarea 下面拉伸的那个标志,如下图 */
      border: 0;
      border-radius: 0px;

      // &:focus {
      //   border-bottom: 1px solid #409eff;
      // }
    }
  }