mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
34 lines
669 B
Vue
34 lines
669 B
Vue
<script setup lang="ts">
|
|
const items = [{
|
|
label: 'Team',
|
|
icon: 'i-heroicons-users'
|
|
}, {
|
|
label: 'Invite users',
|
|
icon: 'i-heroicons-user-plus',
|
|
children: [{
|
|
label: 'Invite by email',
|
|
icon: 'i-heroicons-paper-airplane'
|
|
}, {
|
|
label: 'Invite by link',
|
|
icon: 'i-heroicons-link'
|
|
}]
|
|
}, {
|
|
label: 'New team',
|
|
icon: 'i-heroicons-plus'
|
|
}]
|
|
</script>
|
|
|
|
<template>
|
|
<UButtonGroup>
|
|
<UButton color="gray" variant="subtle" label="Settings" />
|
|
|
|
<UDropdownMenu :items="items">
|
|
<UButton
|
|
color="gray"
|
|
variant="outline"
|
|
icon="i-heroicons-chevron-down-20-solid"
|
|
/>
|
|
</UDropdownMenu>
|
|
</UButtonGroup>
|
|
</template>
|