2021-09-06 20:24:02 -04:00
|
|
|
<template>
|
|
|
|
<div class="input-group mb-3">
|
2021-09-07 04:46:42 -04:00
|
|
|
<input
|
2021-09-07 11:06:49 -04:00
|
|
|
ref="input"
|
2021-09-07 04:46:42 -04:00
|
|
|
v-model="model"
|
|
|
|
:type="visibility"
|
|
|
|
class="form-control"
|
|
|
|
:placeholder="placeholder"
|
|
|
|
:maxlength="maxlength"
|
|
|
|
:autocomplete="autocomplete"
|
|
|
|
:required="required"
|
2021-09-07 11:06:49 -04:00
|
|
|
:readonly="readonly"
|
2021-09-07 04:46:42 -04:00
|
|
|
>
|
|
|
|
|
2021-09-06 20:24:02 -04:00
|
|
|
<a v-if="visibility == 'password'" class="btn btn-outline-primary" @click="showInput()">
|
|
|
|
<font-awesome-icon icon="eye" />
|
|
|
|
</a>
|
|
|
|
<a v-if="visibility == 'text'" class="btn btn-outline-primary" @click="hideInput()">
|
|
|
|
<font-awesome-icon icon="eye-slash" />
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
props: {
|
|
|
|
modelValue: {
|
|
|
|
type: String,
|
|
|
|
default: ""
|
|
|
|
},
|
|
|
|
placeholder: {
|
|
|
|
type: String,
|
|
|
|
default: ""
|
|
|
|
},
|
|
|
|
maxlength: {
|
|
|
|
type: Number,
|
|
|
|
default: 255
|
|
|
|
},
|
|
|
|
autocomplete: {
|
2021-09-07 11:06:49 -04:00
|
|
|
type: String,
|
|
|
|
default: undefined,
|
2021-09-06 20:24:02 -04:00
|
|
|
},
|
|
|
|
required: {
|
|
|
|
type: Boolean
|
|
|
|
},
|
2021-09-07 05:06:33 -04:00
|
|
|
readonly: {
|
2021-09-07 11:06:49 -04:00
|
|
|
type: String,
|
|
|
|
default: undefined,
|
2021-09-07 05:06:33 -04:00
|
|
|
},
|
2021-09-06 20:24:02 -04:00
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
2021-09-07 05:06:33 -04:00
|
|
|
visibility: "password",
|
2021-09-06 20:24:02 -04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
model: {
|
|
|
|
get() {
|
|
|
|
return this.modelValue
|
|
|
|
},
|
|
|
|
set(value) {
|
2021-09-07 04:46:42 -04:00
|
|
|
this.$emit("update:modelValue", value)
|
2021-09-06 20:24:02 -04:00
|
|
|
}
|
2021-09-07 05:06:33 -04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
created() {
|
2021-09-07 11:06:49 -04:00
|
|
|
|
2021-09-06 20:24:02 -04:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
showInput() {
|
|
|
|
this.visibility = "text";
|
|
|
|
},
|
|
|
|
hideInput() {
|
|
|
|
this.visibility = "password";
|
2021-09-07 05:06:33 -04:00
|
|
|
},
|
2021-09-06 20:24:02 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|