mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
Co-authored-by: Daniel Roe <daniel@roe.dev> Co-authored-by: Sébastien Chopin <seb@nuxt.com>
16 lines
281 B
Vue
16 lines
281 B
Vue
<script setup>
|
|
const open = ref(false)
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<UButton label="Open" @click="open = true" />
|
|
|
|
<USlideover v-model="open">
|
|
<div class="p-4 h-full">
|
|
<Placeholder class="w-full h-full" />
|
|
</div>
|
|
</USlideover>
|
|
</div>
|
|
</template>
|