Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
fix: 更换组件库,更改绑定方式,可能所有组件都需要修改
Browse files Browse the repository at this point in the history
  • Loading branch information
jinmao88 committed Dec 18, 2023
1 parent 125afa3 commit 6b39fcf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/gf-vben/src/pages/sys/login/login-form.vue
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ async function handleLogin() {
<vben-form-item class="enter-x" inline :show-label="false">
<vben-input
size="large"
v-model:value="formData.account"
v-model="formData.account"
:placeholder="t('sys.login.userName')"
class="fix-auto-fill"
/>
Expand All @@ -89,7 +89,7 @@ async function handleLogin() {
type="password"
show-password-on="click"
size="large"
v-model:value="formData.password"
v-model="formData.password"
:placeholder="t('sys.login.password')"
/>
</vben-form-item>
Expand Down

0 comments on commit 6b39fcf

Please sign in to comment.