mirror of
https://github.com/keven1024/015.git
synced 2026-05-26 15:13:30 +00:00
37 lines
1.1 KiB
Vue
37 lines
1.1 KiB
Vue
<script setup lang="ts">
|
|
import type { DialogRootEmits, DialogRootProps } from 'reka-ui'
|
|
import { useForwardPropsEmits } from 'reka-ui'
|
|
import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle } from '@/components/ui/dialog'
|
|
import Command from './Command.vue'
|
|
|
|
const props = withDefaults(
|
|
defineProps<
|
|
DialogRootProps & {
|
|
title?: string
|
|
description?: string
|
|
}
|
|
>(),
|
|
{
|
|
title: 'Command Palette',
|
|
description: 'Search for a command to run...',
|
|
}
|
|
)
|
|
const emits = defineEmits<DialogRootEmits>()
|
|
|
|
const forwarded = useForwardPropsEmits(props, emits)
|
|
</script>
|
|
|
|
<template>
|
|
<Dialog v-slot="slotProps" v-bind="forwarded">
|
|
<DialogContent class="overflow-hidden p-0">
|
|
<DialogHeader class="sr-only">
|
|
<DialogTitle>{{ title }}</DialogTitle>
|
|
<DialogDescription>{{ description }}</DialogDescription>
|
|
</DialogHeader>
|
|
<Command>
|
|
<slot v-bind="slotProps" />
|
|
</Command>
|
|
</DialogContent>
|
|
</Dialog>
|
|
</template>
|