mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
20 lines
410 B
Vue
20 lines
410 B
Vue
<script setup lang="ts">
|
|
const open = ref(true)
|
|
|
|
defineShortcuts({
|
|
o: () => open.value = !open.value
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<UPopover v-model:open="open">
|
|
<UButton color="white" :label="open.toString()" trailing-icon="i-heroicons-chevron-down-20-solid" />
|
|
|
|
<template #panel>
|
|
<div class="p-4">
|
|
<Placeholder class="h-20 w-48" />
|
|
</div>
|
|
</template>
|
|
</UPopover>
|
|
</template>
|