fix: acct_mgmt_button

This commit is contained in:
Cindy Chang
2024-07-15 15:39:59 +08:00
parent 4c9633a395
commit cab484ac00
4 changed files with 24 additions and 287 deletions

View File

@@ -334,6 +334,10 @@ export default defineComponent({
[inputPwd, inputConfirmPwd],
([newPwd, newConfirmPwd]) => {
isPwdMatched.value = newPwd === newConfirmPwd && newPwd.length;
// 只要[確認密碼]或[密碼]有更動confirm 按鈕就可點選
if (newPwd || newConfirmPwd) {
// isConfirmDisabled.value = false;
}
}
)
});