mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
16 lines
297 B
Vue
16 lines
297 B
Vue
<script setup>
|
|
const isOpen = ref(false)
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<UButton label="Open" @click="isOpen = true" />
|
|
|
|
<USlideover v-model="isOpen" :overlay="false">
|
|
<div class="p-4 flex-1">
|
|
<Placeholder class="h-full" />
|
|
</div>
|
|
</USlideover>
|
|
</div>
|
|
</template>
|