fix サインアップ画面のパスワード再入力をいい感じに

This commit is contained in:
ThinaticSystem 2021-08-12 20:10:16 +09:00
parent 6dfa0a8099
commit 6fd77a071d

View File

@ -156,6 +156,7 @@ export default defineComponent({
const strength = getPasswordStrength(this.password); const strength = getPasswordStrength(this.password);
this.passwordStrength = strength > 0.7 ? 'high' : strength > 0.3 ? 'medium' : 'low'; this.passwordStrength = strength > 0.7 ? 'high' : strength > 0.3 ? 'medium' : 'low';
this.passwordRetypeState = this.password == this.retypedPassword ? 'match' : 'not-match';
}, },
onChangePasswordRetype() { onChangePasswordRetype() {