mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
18 lines
345 B
Vue
18 lines
345 B
Vue
<script setup lang="ts">
|
|
const open = ref(false)
|
|
|
|
defineShortcuts({
|
|
o: () => open.value = !open.value
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<UPopover v-model:open="open">
|
|
<UButton label="Open" color="neutral" variant="subtle" />
|
|
|
|
<template #content>
|
|
<Placeholder class="size-48 m-4 inline-flex" />
|
|
</template>
|
|
</UPopover>
|
|
</template>
|