vue-devui 1.3.2 → 1.3.3-alpha.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/table/index.es.js CHANGED
@@ -9586,7 +9586,8 @@ function useCheckbox(props, ctx) {
9586
9586
  ctx.emit("update:modelValue", current);
9587
9587
  ctx.emit("change", current);
9588
9588
  };
9589
- const handleClick = () => {
9589
+ const handleClick = ($event) => {
9590
+ $event.stopPropagation();
9590
9591
  canChange(!isChecked.value, props.label).then((res) => res && toggle());
9591
9592
  };
9592
9593
  const size = computed(() => (formContext == null ? void 0 : formContext.size) || (checkboxGroupConf == null ? void 0 : checkboxGroupConf.size.value) || props.size);