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