diff --git a/src/runtime/components/Checkbox.vue b/src/runtime/components/Checkbox.vue index 634a0bcd..9c67485e 100644 --- a/src/runtime/components/Checkbox.vue +++ b/src/runtime/components/Checkbox.vue @@ -34,15 +34,15 @@ export interface CheckboxProps extends Pick } -export interface CheckboxSlots { - label(props: { label?: string }): any - description(props: { description?: string }): any -} - export interface CheckboxEmits { (e: 'update:modelValue', payload: boolean): void (e: 'change', payload: Event): void } + +export interface CheckboxSlots { + label(props: { label?: string }): any + description(props: { description?: string }): any +}