!93 fix: if(captchaEnabled) => if(captchaEnabled.value)

Merge pull request !93 from dhb52/N/A
This commit is contained in:
疯狂的狮子Li 2024-03-15 01:36:21 +00:00 committed by Gitee
commit 1383f5a7eb
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -121,7 +121,7 @@ const handleRegister = () => {
await router.push('/login'); await router.push('/login');
} else { } else {
loading.value = false; loading.value = false;
if (captchaEnabled) { if (captchaEnabled.value) {
getCode(); getCode();
} }
} }