Skip to content

Commit 0a9aab5

Browse files
committed
fix(v-model): fix input change check for type="number"
The change should only apply to the .number modifier, not type="number". fix #6069
1 parent fed602b commit 0a9aab5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ function genDefaultModel (
158158

159159
addProp(el, 'value', `(${value})`)
160160
addHandler(el, event, code, null, true)
161-
if (trim || number || type === 'number') {
161+
if (trim || number) {
162162
addHandler(el, 'blur', '$forceUpdate()')
163163
}
164164
}

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
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')
9+
const isTextInputType = makeMap('text,number,password,search,email,tel,url')
1010

1111
/* istanbul ignore if */
1212
if (isIE9) {

src/platforms/web/runtime/modules/dom-props.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ function isDirty (elm: acceptValueElm, checkVal: string): boolean {
6969
function isInputChanged (elm: any, newVal: string): boolean {
7070
const value = elm.value
7171
const modifiers = elm._vModifiers // injected by v-model runtime
72-
if ((isDef(modifiers) && modifiers.number) || elm.type === 'number') {
72+
if (isDef(modifiers) && modifiers.number) {
7373
return toNumber(value) !== toNumber(newVal)
7474
}
7575
if (isDef(modifiers) && modifiers.trim) {

0 commit comments

Comments
 (0)