Files
ui/docs/components/content/examples/PopoverExampleOverlay.vue
2023-11-23 11:12:42 +01:00

14 lines
334 B
Vue

<template>
<div class="flex gap-4 items-center">
<UPopover overlay>
<UButton color="white" label="Open" trailing-icon="i-heroicons-chevron-down-20-solid" />
<template #panel>
<div class="p-4">
<Placeholder class="h-20 w-48" />
</div>
</template>
</UPopover>
</div>
</template>