Files
ui/playground/app/components/ModalExample.vue
2025-02-27 17:32:48 +01:00

16 lines
329 B
Vue

<script setup lang="ts">
defineProps<{
count: number
}>()
const emit = defineEmits(['close'])
</script>
<template>
<UModal :title="`This modal was opened programmatically ${count} times`">
<template #footer>
<UButton color="neutral" label="Close" @click="emit('close')" />
</template>
</UModal>
</template>