We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bbaab3 commit c7a28d5Copy full SHA for c7a28d5
src/directives/model/default.js
@@ -51,6 +51,12 @@ module.exports = {
51
// the cursor was at
52
charsOffset = el.value.length - el.selectionStart
53
} catch (e) {}
54
+ // Fix IE10/11 infinite update cycle
55
+ // https://github.com/yyx990803/vue/issues/592
56
+ /* istanbul ignore if */
57
+ if (charsOffset < 0) {
58
+ return
59
+ }
60
set()
61
_.nextTick(function () {
62
// force a value update, because in
0 commit comments