Skip to content

Commit ed135c9

Browse files
committed
fix: Add missing emit event type if only strength-meter is active
Should fix #32
1 parent 6ced855 commit ed135c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/PasswordStrengthMeter.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@
317317
watch: {
318318
value (newValue) {
319319
if (this.strengthMeterOnly) {
320-
this.emitValue(newValue)
320+
this.emitValue('input', newValue)
321321
}
322322
},
323323
passwordStrength (score) {

0 commit comments

Comments
 (0)