diff --git a/docs/components/content/examples/CommandPaletteExampleAsync.vue b/docs/components/content/examples/CommandPaletteExampleAsync.vue index 4f00db99..f459d162 100644 --- a/docs/components/content/examples/CommandPaletteExampleAsync.vue +++ b/docs/components/content/examples/CommandPaletteExampleAsync.vue @@ -7,6 +7,7 @@ const groups = [{ return [] } + // @ts-ignore const users: any[] = await $fetch('https://jsonplaceholder.typicode.com/users', { params: { q } }) return users.map(user => ({ id: user.id, label: user.name, suffix: user.email }))