mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
24 lines
551 B
Vue
24 lines
551 B
Vue
<script setup lang="ts">
|
|
const items = [{
|
|
label: 'Profile',
|
|
icon: 'i-heroicons-user',
|
|
slot: 'profile'
|
|
}, {
|
|
label: 'Billing',
|
|
icon: 'i-heroicons-credit-card'
|
|
}, {
|
|
label: 'Settings',
|
|
icon: 'i-heroicons-cog'
|
|
}]
|
|
</script>
|
|
|
|
<template>
|
|
<UDropdownMenu :items="items" class="w-48">
|
|
<UButton label="Open" color="neutral" variant="outline" icon="i-heroicons-bars-3" />
|
|
|
|
<template #profile-trailing>
|
|
<UIcon name="i-heroicons-check-badge" class="shrink-0 size-5 text-[--ui-primary]" />
|
|
</template>
|
|
</UDropdownMenu>
|
|
</template>
|