mirror of
https://git.fightbot.fun/hxuanyu/BingPaper.git
synced 2026-03-07 18:19:33 +08:00
16 lines
472 B
Vue
16 lines
472 B
Vue
<script setup lang="ts">
|
|
import type { AlertDialogEmits, AlertDialogProps } from "reka-ui"
|
|
import { AlertDialogRoot, useForwardPropsEmits } from "reka-ui"
|
|
|
|
const props = defineProps<AlertDialogProps>()
|
|
const emits = defineEmits<AlertDialogEmits>()
|
|
|
|
const forwarded = useForwardPropsEmits(props, emits)
|
|
</script>
|
|
|
|
<template>
|
|
<AlertDialogRoot v-slot="slotProps" data-slot="alert-dialog" v-bind="forwarded">
|
|
<slot v-bind="slotProps" />
|
|
</AlertDialogRoot>
|
|
</template>
|