Skip to content

Commit

Permalink
fix user name form v-model
Browse files Browse the repository at this point in the history
  • Loading branch information
rector1024 committed Sep 10, 2018
1 parent b73192f commit 39de048
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions login.html
Original file line number Diff line number Diff line change
Expand Up @@ -189,13 +189,13 @@ <h1>用户登录</h1>
<div class="form-group">
<label>
<span>登录名:</span>
<input type="text" id="username" name="username" placeholder="请输入登录名" v-model="loginViewModel.username" />
<input type="text" placeholder="请输入登录名" v-model="loginViewModel.userName" />
</label>
</div>
<div class="form-group">
<label>
密码:
<input type="password" id="password" name="password" placeholder="请输入密码" v-model="loginViewModel.password" />
<input type="password" placeholder="请输入密码" v-model="loginViewModel.password" />
</label>
</div>
<div class="form-group">
Expand Down

0 comments on commit 39de048

Please sign in to comment.