Fixed checkbox focus bug (#1887)

* 修复 checkbox 的 focus 变量找不到的bug

* 修复 checkbox 的 focus 变量找不到的bug
pull/1900/head
Zhao Xiaoqiang 2016-12-21 00:57:11 +08:00 committed by cinwell.li
parent 5fb979f3a6
commit 3bf6cf6418
1 changed files with 2 additions and 1 deletions

View File

@ -51,7 +51,8 @@
data() {
return {
selfModel: false
selfModel: false,
focus: false
};
},