mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
16 lines
329 B
Vue
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>
|