diff --git a/src/runtime/components/Checkbox.vue b/src/runtime/components/Checkbox.vue index 0291e0f3..e2929e93 100644 --- a/src/runtime/components/Checkbox.vue +++ b/src/runtime/components/Checkbox.vue @@ -38,6 +38,10 @@ export interface CheckboxSlots { label(props: { label?: string }): any description(props: { description?: string }): any } + +export interface CheckboxEmits { + (e: 'update:modelValue', payload: boolean): void +}