mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
20 lines
422 B
Vue
20 lines
422 B
Vue
<script setup lang="ts">
|
|
defineProps<{
|
|
count: number
|
|
}>()
|
|
|
|
const emit = defineEmits(['close'])
|
|
</script>
|
|
|
|
<template>
|
|
<USlideover :description="`This slideover was opened programmatically ${count} times`">
|
|
<template #body>
|
|
<Placeholder class="h-full" />
|
|
</template>
|
|
|
|
<template #footer>
|
|
<UButton color="neutral" label="Close" @click="emit('close')" />
|
|
</template>
|
|
</USlideover>
|
|
</template>
|