[DOM] Input elements should have autocomplete attributes (suggested: "current-password"): (More info: https://goo.gl/9p2vKq) <input type="password" class="ant-input css-9q494j" placeholder="请输入密码" maxlength="30" value>
今天运行项目的时候,发现控制台有个错误提示,看着难受,想办法处理掉它。
加上autocomplete="off",问题解决了!
<a-input-password v-model:value.trim="formData.pw" allowClear autocomplete="off" @keyup.enter.native="submit" />