chore(components): add missing emits for docs

This commit is contained in:
Benjamin Canac
2024-06-28 16:19:06 +02:00
parent 7dd90f2bb7
commit fae627ed65
6 changed files with 17 additions and 1 deletions

View File

@@ -29,6 +29,10 @@ export interface ChipSlots {
default(props?: any): any
content(props?: any): any
}
export interface ChipEmits {
(e: 'update:show', payload: boolean): void
}
</script>
<script setup lang="ts">