We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 404688f commit fcea8b5Copy full SHA for fcea8b5
src/components/PasswordStrengthMeter.vue
@@ -13,6 +13,7 @@
13
:placeholder="placeholder"
14
:required="required"
15
:disabled="disabled"
16
+ :autocomplete="autocomplete"
17
v-bind:value="value"
18
@input="evt => emitValue('input', evt.target.value)"
19
@blur="evt => emitValue('blur', evt.target.value)"
@@ -75,6 +76,14 @@
75
76
type: String,
77
default: 'Please enter your password'
78
},
79
+ /**
80
+ * Input field autocomplete
81
+ * @type {String}
82
+ */
83
+ autocomplete: {
84
+ type: String,
85
+ default: 'new-password'
86
+ },
87
/**
88
* Binded value
89
* @type {Object}
0 commit comments