Files
FEDEO/spaces/components/TeamsDropdown.vue

46 lines
1.0 KiB
Vue

<script setup lang="ts">
const teams = [{
label: 'Nuxt',
/*avatar: {
src: 'https://avatars.githubusercontent.com/u/23360933?s=200&v=4'
},*/
click: () => {
team.value = teams[0]
}
}, {
label: 'NuxtLabs',
/*avatar: {
src: 'https://avatars.githubusercontent.com/u/62017400?s=200&v=4'
},*/
click: () => {
team.value = teams[1]
}
}]
const actions = [{
label: 'Create team',
icon: 'i-heroicons-plus-circle'
}, {
label: 'Manage teams',
icon: 'i-heroicons-cog-8-tooth'
}]
const team = ref(teams[0])
</script>
<template>
<UDropdown
v-slot="{ open }"
mode="hover"
:items="[teams]"
class="w-full"
:ui="{ width: 'w-full' }"
:popper="{ strategy: 'absolute' }"
>
<UButton color="gray" variant="ghost" :class="[open && 'bg-gray-50 dark:bg-gray-800']" class="w-full">
<UAvatar v-if="team.avatar" :src="team.avatar.src" size="2xs" />
<span class="truncate text-gray-900 dark:text-white font-semibold">{{ team.label }}</span>
</UButton>
</UDropdown>
</template>