fix checkbox

This commit is contained in:
cookfront 2017-03-09 10:53:46 +08:00
parent 60d6ceeadc
commit bbb0baa763

View File

@ -100,7 +100,7 @@ export default {
if (this.isDisabled) { if (this.isDisabled) {
return; return;
} }
this.$refs.input.click(); this.currentValue = !this.currentValue;
} }
} }
}; };