Skip to content

Commit 4acc8c8

Browse files
committed
fix(v-model): use consistent behavior during IME composition for other text-like input types (fix #5902)
1 parent 4f8f4db commit 4acc8c8

File tree

1 file changed

+4
-2
lines changed
  • src/platforms/web/runtime/directives

1 file changed

+4
-2
lines changed

src/platforms/web/runtime/directives/model.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@
33
* properties to Elements.
44
*/
55

6-
import { looseEqual, looseIndexOf } from 'shared/util'
6+
import { looseEqual, looseIndexOf, makeMap } from 'shared/util'
77
import { warn, isAndroid, isIE9, isIE, isEdge } from 'core/util/index'
88

9+
const isTextInputType = makeMap('text,password,search,email,tel,url')
10+
911
/* istanbul ignore if */
1012
if (isIE9) {
1113
// http://www.matts411.com/post/internet-explorer-9-oninput/
@@ -28,7 +30,7 @@ export default {
2830
if (isIE || isEdge) {
2931
setTimeout(cb, 0)
3032
}
31-
} else if (vnode.tag === 'textarea' || el.type === 'text' || el.type === 'password') {
33+
} else if (vnode.tag === 'textarea' || isTextInputType(el.type)) {
3234
el._vModifiers = binding.modifiers
3335
if (!binding.modifiers.lazy) {
3436
// Safari < 10.2 & UIWebView doesn't fire compositionend when

0 commit comments

Comments
 (0)