Skip to content

Commit f7ca21e

Browse files
committed
fix: always install composition event listeners
Previously the installation was skipped on Android because it was not needed for Chinese IME - however some IMEs such as Japanese exhibits the same behavior as on other browers. So it is safer to always enable the check. Closes #7367
1 parent 3eb37ac commit f7ca21e

File tree

2 files changed

+22
-26
lines changed

2 files changed

+22
-26
lines changed

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

+3-5
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import { isTextInputType } from 'web/util/element'
77
import { looseEqual, looseIndexOf } from 'shared/util'
88
import { mergeVNodeHook } from 'core/vdom/helpers/index'
9-
import { warn, isAndroid, isIE9, isIE, isEdge } from 'core/util/index'
9+
import { warn, isIE9, isIE, isEdge } from 'core/util/index'
1010

1111
/* istanbul ignore if */
1212
if (isIE9) {
@@ -34,15 +34,13 @@ const directive = {
3434
} else if (vnode.tag === 'textarea' || isTextInputType(el.type)) {
3535
el._vModifiers = binding.modifiers
3636
if (!binding.modifiers.lazy) {
37+
el.addEventListener('compositionstart', onCompositionStart)
38+
el.addEventListener('compositionend', onCompositionEnd)
3739
// Safari < 10.2 & UIWebView doesn't fire compositionend when
3840
// switching focus before confirming composition choice
3941
// this also fixes the issue where some browsers e.g. iOS Chrome
4042
// fires "change" instead of "input" on autocomplete.
4143
el.addEventListener('change', onCompositionEnd)
42-
if (!isAndroid) {
43-
el.addEventListener('compositionstart', onCompositionStart)
44-
el.addEventListener('compositionend', onCompositionEnd)
45-
}
4644
/* istanbul ignore if */
4745
if (isIE9) {
4846
el.vmodel = true

test/unit/features/directives/model-text.spec.js

+19-21
Original file line numberDiff line numberDiff line change
@@ -183,27 +183,25 @@ describe('Directive v-model text', () => {
183183
})
184184
}
185185

186-
if (!isAndroid) {
187-
it('compositionevents', function (done) {
188-
const vm = new Vue({
189-
data: {
190-
test: 'foo'
191-
},
192-
template: '<input v-model="test">'
193-
}).$mount()
194-
const input = vm.$el
195-
triggerEvent(input, 'compositionstart')
196-
input.value = 'baz'
197-
// input before composition unlock should not call set
198-
triggerEvent(input, 'input')
199-
expect(vm.test).toBe('foo')
200-
// after composition unlock it should work
201-
triggerEvent(input, 'compositionend')
202-
triggerEvent(input, 'input')
203-
expect(vm.test).toBe('baz')
204-
done()
205-
})
206-
}
186+
it('compositionevents', function (done) {
187+
const vm = new Vue({
188+
data: {
189+
test: 'foo'
190+
},
191+
template: '<input v-model="test">'
192+
}).$mount()
193+
const input = vm.$el
194+
triggerEvent(input, 'compositionstart')
195+
input.value = 'baz'
196+
// input before composition unlock should not call set
197+
triggerEvent(input, 'input')
198+
expect(vm.test).toBe('foo')
199+
// after composition unlock it should work
200+
triggerEvent(input, 'compositionend')
201+
triggerEvent(input, 'input')
202+
expect(vm.test).toBe('baz')
203+
done()
204+
})
207205

208206
it('warn invalid tag', () => {
209207
new Vue({

0 commit comments

Comments
 (0)