fix(CommandPalette): hack for reactivity

This commit is contained in:
Benjamin Canac
2022-07-22 15:47:32 +02:00
parent be94fea84a
commit b43394ddc3
2 changed files with 3 additions and 3 deletions

View File

@@ -3,9 +3,9 @@ import type { UseFuseOptions } from '@vueuse/integrations/useFuse'
import type { Avatar } from './avatar'
export interface Command {
id: string | number
prefix?: string
suffix?: string
label: string
icon?: string
iconClass?: string
avatar?: Partial<Avatar>
@@ -16,7 +16,6 @@ export interface Command {
export interface Group {
key: string
label: string
active?: string
inactive?: string
commands: Command[]