From 8609d4aafb183b75d752146ddacef2d54c5749bc Mon Sep 17 00:00:00 2001 From: Evan You Date: Fri, 25 Dec 2015 15:53:17 -0500 Subject: [PATCH] no need to handle focus/blur for v-model with lazy (fix #2083) --- src/directives/public/model/text.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/directives/public/model/text.js b/src/directives/public/model/text.js index 1931af4fd..dd5658a32 100644 --- a/src/directives/public/model/text.js +++ b/src/directives/public/model/text.js @@ -45,7 +45,7 @@ export default { // prevent messing with the input when user is typing, // and force update on blur. this.focused = false - if (!isRange) { + if (!isRange && !lazy) { this.on('focus', function () { self.focused = true })