mirror of
https://github.com/any86/any-rule.git
synced 2025-07-14 15:38:58 +08:00
fix: 对移动端输入法模式下的keyup事件进行兼容处理, 增加composition系列事件监听
This commit is contained in:
parent
f045aee4f5
commit
f60ae7ed56
@ -77,6 +77,9 @@
|
||||
ref="input"
|
||||
v-model="list[index].value"
|
||||
:placeholder="example"
|
||||
@compositionstart="check(index, 'blur')"
|
||||
@compositionupdate="check(index, 'blur')"
|
||||
@compositionend="check(index, 'blur')"
|
||||
@blur="check(index, 'blur')"
|
||||
@keyup="check(index, 'keyup')"
|
||||
>
|
||||
|
Loading…
x
Reference in New Issue
Block a user