Files
chatwoot/app/javascript/widget/components/GroupedAvatars.vue
2025-08-11 15:47:17 +05:30

37 lines
815 B
Vue

<script setup>
import Avatar from 'dashboard/components-next/avatar/Avatar.vue';
import { defineProps, computed } from 'vue';
const props = defineProps({
users: {
type: Array,
default: () => [],
},
limit: {
type: Number,
default: 4,
},
});
const usersToDisplay = computed(() => props.users.slice(0, props.limit));
</script>
<template>
<div class="flex">
<span
v-for="(user, index) in usersToDisplay"
:key="user.id"
:class="index ? 'ltr:-ml-4 rtl:-mr-4' : ''"
class="inline-block rounded-full text-white shadow-solid"
>
<Avatar
:name="user.name"
:src="user.avatar_url"
:size="36"
class="[&>span]:outline [&>span]:outline-1 [&>span]:outline-n-background"
rounded-full
/>
</span>
</div>
</template>