mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
22 lines
584 B
Vue
22 lines
584 B
Vue
<script setup lang="ts">
|
|
const open = ref(false)
|
|
</script>
|
|
|
|
<template>
|
|
<UPopover v-model:open="open" :dismissible="false" :ui="{ content: 'p-4' }">
|
|
<UButton label="Open" color="neutral" variant="subtle" />
|
|
|
|
<template #content>
|
|
<div class="flex items-center gap-4 mb-4">
|
|
<h2 class="text-highlighted font-semibold">
|
|
Popover non-dismissible
|
|
</h2>
|
|
|
|
<UButton color="neutral" variant="ghost" icon="i-lucide-x" @click="open = false" />
|
|
</div>
|
|
|
|
<Placeholder class="size-full min-h-48" />
|
|
</template>
|
|
</UPopover>
|
|
</template>
|