首页 > 其他分享 >1.禁止浏览器记忆密码框污染其他input, 可让输入的text变为密码框形式。

1.禁止浏览器记忆密码框污染其他input, 可让输入的text变为密码框形式。

时间:2023-01-12 15:25:33浏览次数:39  
标签:浏览器 text 变为 密码 记忆 input

1.让input的type类型使password变为text

<el-input
        type="text"
        placeholder="请输入"
        v-model="unlockPwd"
        size="mini"
        class="no-autofill-pwd"
></el-input>

2.加上class类

.no-autofill-pwd {
  ::v-deep .el-input__inner {
    -webkit-text-security: disc !important;
  }
}

标签:浏览器,text,变为,密码,记忆,input
From: https://www.cnblogs.com/songkomei/p/17046751.html

相关文章