feat(Popover): ability to add overlay (#1014)

This commit is contained in:
Conner Blanton
2023-11-23 04:12:42 -06:00
committed by GitHub
parent 819b5f8a17
commit 06d4510d1c
4 changed files with 44 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
<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>