diff --git a/components/lib/password/Password.vue b/components/lib/password/Password.vue index a2ec8725d..7645e6bdc 100755 --- a/components/lib/password/Password.vue +++ b/components/lib/password/Password.vue @@ -182,7 +182,12 @@ export default { } }, setPasswordMeter() { - if (!this.modelValue) return; + if (!this.modelValue) { + this.meter = null; + this.infoText = this.promptText; + + return; + } const { meter, label } = this.checkPasswordStrength(this.modelValue);