prevent Chrome ask for saving password for notification settings (change to one-time-code to solve it)

This commit is contained in:
LouisLam 2021-09-07 23:06:49 +08:00
parent da74391c3e
commit d164b6ccce
2 changed files with 17 additions and 41 deletions

View file

@ -1,11 +1,7 @@
<template>
<div class="input-group mb-3">
<!--
Hack - Disable Chrome save password
readonly + onfocus
https://stackoverflow.com/questions/41217019/how-to-prevent-a-browser-from-storing-passwords
-->
<input
ref="input"
v-model="model"
:type="visibility"
class="form-control"
@ -13,8 +9,7 @@
:maxlength="maxlength"
:autocomplete="autocomplete"
:required="required"
:readonly="isReadOnly"
@focus="removeReadOnly"
:readonly="readonly"
>
<a v-if="visibility == 'password'" class="btn btn-outline-primary" @click="showInput()">
@ -42,20 +37,20 @@ export default {
default: 255
},
autocomplete: {
type: Boolean,
type: String,
default: undefined,
},
required: {
type: Boolean
},
readonly: {
type: Boolean,
default: false,
type: String,
default: undefined,
},
},
data() {
return {
visibility: "password",
readOnlyValue: false,
}
},
computed: {
@ -66,22 +61,10 @@ export default {
set(value) {
this.$emit("update:modelValue", value)
}
},
isReadOnly() {
// Actually readonly from prop
if (this.readonly) {
return true;
}
// Hack - Disable Chrome save password
return this.readOnlyValue;
}
},
created() {
// Hack - Disable Chrome save password
if (this.autocomplete) {
this.readOnlyValue = "readonly";
}
},
methods: {
showInput() {
@ -90,13 +73,6 @@ export default {
hideInput() {
this.visibility = "password";
},
// Hack - Disable Chrome save password
removeReadOnly() {
if (this.autocomplete) {
this.readOnlyValue = false;
}
}
}
}
</script>