niksmr / vue-masked-input

Masked input component for Vue.js
https://niksmr.github.io/vue-masked-input/
MIT License
454 stars 92 forks source link

Autocomplete not filling #50

Open gergo2007 opened 6 years ago

gergo2007 commented 6 years ago

https://drive.google.com/file/d/1owVUG31IF4vP2TMcIPe9dHdjb7EEF-97/view

Autocomplete is not filling the input.

ThematicaDigital commented 5 years ago

yeah, what about it?

Rashudo commented 2 years ago
<masked-input
    ...
    v-model="localPhone"
    @input.native="changePhone"
/>
......
methods: {
    changePhone: function (e) {
        this.localPhone = e.data
    }
},