chore(CommandPalette): one fuse per group

This commit is contained in:
Benjamin Canac
2022-07-17 17:21:15 +02:00
parent cf65b4ab54
commit 4eb4b65167
4 changed files with 41 additions and 35 deletions

View File

@@ -30,11 +30,11 @@
<script setup lang="ts">
import { ComboboxOption } from '@headlessui/vue'
import type { PropType } from 'vue'
import type { Group } from '../../types/command-palette'
import type { ComputedGroup } from '../../types/command-palette'
defineProps({
group: {
type: Object as PropType<Group>,
type: Object as PropType<ComputedGroup>,
required: true
}
})