mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
18 lines
351 B
Vue
18 lines
351 B
Vue
<script setup lang="ts">
|
|
const open = ref(true)
|
|
|
|
defineShortcuts({
|
|
o: () => open.value = !open.value
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<UCollapsible v-model:open="open" class="w-48 mx-auto">
|
|
<UButton label="Open" color="gray" variant="subtle" />
|
|
|
|
<template #content>
|
|
<Placeholder class="h-48" />
|
|
</template>
|
|
</UCollapsible>
|
|
</template>
|