fix checkbox isGroup bug in computed cached (#1860)

pull/1876/head
baiyaaaaa 2016-12-20 14:18:46 +08:00 committed by cinwell.li
parent 1db8dc6588
commit 15e74b6e7d
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@
},
store() {
return this._checkboxGroup.value;
return this._checkboxGroup ? this._checkboxGroup.value : this.value;
}
},