当我输入时,输入触发两次

时间:2019-01-17 10:34:12

标签: javascript events input event-handling

我使用电话号码的输入文字来登录用户。 但是当我输入电话号码时,它会触发2个输入, 输入和Inputext这是我的问题。 现在,我输入的每个字符都会触发2个输入。

<input :id="id" :type="type" :value="value" 
               :autocomplete="autocomplete"
               v-mask="mask"
               @input="emitChange($event)"
               @focus="focused=true"
               @blur="focused=false" v-focus="this.autoFocus"/>

我该怎么做才能在当时仅触发其中一个?

0 个答案:

没有答案