mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-23 00:15:05 +01:00
fix: define empty props in slots for nuxt-component-meta parsing
This commit is contained in:
@@ -43,13 +43,13 @@ export interface ModalEmits extends DialogRootEmits {}
|
||||
|
||||
export interface ModalSlots {
|
||||
default(props: { open: boolean }): any
|
||||
content(): any
|
||||
header(): any
|
||||
title(): any
|
||||
description(): any
|
||||
content(props?: any): any
|
||||
header(props?: any): any
|
||||
title(props?: any): any
|
||||
description(props?: any): any
|
||||
close(props: { class: string }): any
|
||||
body(): any
|
||||
footer(): any
|
||||
body(props?: any): any
|
||||
footer(props?: any): any
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user