vue 问题汇总
问题1:
前端编写代码时,
查看浏览器控制台会出现的警告错误[DOM] Password field is not contained in a form:
或者是 input 警告[DOM] Input elements should have autocomplete attributes (suggested: “new-password”)
回答:
添加placeholder属性——作用:规定输入字段是否应该启用自动完成功能
<div class="form-group">
<form>
密码:
<input type="password" class="form-control" id="exampleInputPassword1" name="password" placeholder="请输入密码" autocomplete="off"/>
</form>
</div>
问题二:
Error: Cannot redefine property: $http
删掉 get:


浙公网安备 33010602011771号