refactor(components): unite syntax for emits declaration (#4512)

This commit is contained in:
J-Michalek
2025-07-14 10:46:47 +02:00
committed by GitHub
parent 488707e148
commit 6f2ce5c610
7 changed files with 15 additions and 15 deletions

View File

@@ -35,7 +35,7 @@ export interface ChipProps {
}
export interface ChipEmits {
(e: 'update:show', payload: boolean): void
'update:show': [payload: boolean]
}
export interface ChipSlots {