mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
27 lines
577 B
Vue
27 lines
577 B
Vue
<script setup lang="ts">
|
|
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">
|
|
<UButton
|
|
color="gray"
|
|
variant="ghost"
|
|
size="sm"
|
|
icon="i-heroicons-x-mark-20-solid"
|
|
class="flex sm:hidden absolute end-5 top-5 z-10"
|
|
square
|
|
padded
|
|
@click="isOpen = false"
|
|
/>
|
|
|
|
<Placeholder class="h-full" />
|
|
</div>
|
|
</USlideover>
|
|
</div>
|
|
</template>
|