話不多說(shuō)例驹,直接上代碼秧秉,絕對(duì)有效
// html
<el-form>
<input type="password" class="hide" id="passWord"/>
<input type="text" class="hide" id="userName"/>
<el-form-item label="賬號(hào):" prop="userName">
<el-input v-model="userInfo.userName" autocomplete="off" placeholder="請(qǐng)輸入賬號(hào)"></el-input>
</el-form-item>
<el-form-item label="密碼:" prop="passWord">
<el-input v-model="userInfo.passWord" autocomplete="off" type="password" placeholder="請(qǐng)輸入密碼"></el-input>
</el-form-item>
</el-form>
// css
<style>
.hide{
width: 0;
position: absolute;
border: 0;
}
</style>
主要是兩個(gè) input
替代了填充的 el-input
組件