1
0
mirror of https://gitee.com/vant-contrib/vant.git synced 2025-04-06 03:57:59 +08:00

fix checkbox

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

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