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

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>