no need to handle focus/blur for v-model with lazy (fix #2083)

This commit is contained in:
Evan You 2015-12-25 15:53:17 -05:00
parent c3848c8c8c
commit 8609d4aafb
1 changed files with 1 additions and 1 deletions

View File

@ -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
})