vue-security-code
vue-security-code copied to clipboard
ios 短信验证码自动填充问题
ios 短信验证码自动填充后,监听不到 value 值的变化 解决方案:
<input ref="input" class="input-code" @input="handleInput($event)" v-model="value"
:id="`code-${uuid}`" :name="`code-${uuid}`" type="tel" :maxlength="length"
autocorrect="off" autocomplete="off" autocapitalize="off">
把 @keyup 改成 @input 事件监听即可