docs: fix typo (#11105)

This commit is contained in:
Micha Huhn 2024-06-11 08:19:52 +02:00 committed by GitHub
parent df686abb4f
commit 70773d0098
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ type BooleanKey<T, K extends keyof T = keyof T> = K extends any
* const emit = defineEmits<{
* // <eventName>: <expected arguments>
* change: []
* update: [value: string] // named tuple syntax
* update: [value: number] // named tuple syntax
* }>()
*
* emit('change')