From 8863c8f6fe4cd9f347b77276aeba14d0ab4ae7ba Mon Sep 17 00:00:00 2001 From: dolymood Date: Thu, 12 Apr 2018 22:50:41 +0800 Subject: [PATCH] fix checkbox emit param --- src/components/checkbox/checkbox.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/checkbox/checkbox.vue b/src/components/checkbox/checkbox.vue index 505e19a7..630b50dc 100644 --- a/src/components/checkbox/checkbox.vue +++ b/src/components/checkbox/checkbox.vue @@ -95,7 +95,7 @@ const parentEmitEvent = newValue ? EVENT_CHECKED : EVENT_CANCLE_CHECKED this.$emit(EVENT_INPUT, emitValue) if (this.isInGroup) { - this.$parent.$emit(parentEmitEvent, value || newValue, this) + this.$parent.$emit(parentEmitEvent, value || newValue) } } }, -- GitLab