vue-masked-input
vue-masked-input copied to clipboard
Autocomplete not filling
https://drive.google.com/file/d/1owVUG31IF4vP2TMcIPe9dHdjb7EEF-97/view
Autocomplete is not filling the input.
yeah, what about it?
<masked-input
...
v-model="localPhone"
@input.native="changePhone"
/>
......
methods: {
changePhone: function (e) {
this.localPhone = e.data
}
},