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