mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-02-03 05:37:56 +01:00
feat(Popover): new
This commit is contained in:
26
playground/pages/popover.vue
Normal file
26
playground/pages/popover.vue
Normal file
@@ -0,0 +1,26 @@
|
||||
<template>
|
||||
<UPopover v-model:open="open" arrow>
|
||||
<UButton label="Click me" color="white" />
|
||||
|
||||
<template #content>
|
||||
<div class="flex gap-2 p-4">
|
||||
<UButton label="Close" color="gray" @click="open = false" />
|
||||
<UButton label="Send" color="black" trailing-icon="i-heroicons-paper-airplane" :loading="loading" @click="send" />
|
||||
</div>
|
||||
</template>
|
||||
</UPopover>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
const open = ref(false)
|
||||
const loading = ref(false)
|
||||
|
||||
function send () {
|
||||
loading.value = true
|
||||
|
||||
setTimeout(() => {
|
||||
loading.value = false
|
||||
open.value = false
|
||||
}, 1000)
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user