NuxtN
Nuxt5mo ago
3 replies
lixs

Nuxt UI AvatarGroup Tooltip

Hi, we are using v4 with an avatarGroup tooltip
          <UAvatarGroup
            v-if="sharedUsers.length"
            :max="3"
            size="sm"
            @click="isShareProjectModalOpen = true"
          >
            <UTooltip
              v-for="user in sharedUsers"
              :key="user.emailAddress"
              :text="user.fullName ?? user.emailAddress"
              :delay-duration="0"
            >
              <UAvatar
                :src="user.avatar ?? undefined"
                :alt="user.fullName ?? user.emailAddress"
              />
            </UTooltip>
          </UAvatarGroup>


We have few modal opening on the same page however we have inconsistency with the tooltip when playing around opening UModal on the page the tooltip would stop working. has anyone encounter such issue?
Was this page helpful?