refactor: extract account avatar
This commit is contained in:
parent
910c585a55
commit
b58d204199
3 changed files with 25 additions and 14 deletions
|
@ -12,16 +12,12 @@ defineOptions({
|
|||
</script>
|
||||
|
||||
<template>
|
||||
<div relative flex-shrink-0>
|
||||
<div v-if="hover" relative flex-shrink-0>
|
||||
<div group>
|
||||
<AccountHoverCard v-if="hover" top="-3.2" left="-4.4" absolute :account="account" op0 pointer-events-none group-hover="pointer-events-auto op100 scale-100" delay-250 transition transform scale-20 class="ease-[cubic-bezier(0.4, 0.0, 0.2, 1)]" />
|
||||
<img
|
||||
:src="account.avatar"
|
||||
:alt="account.username"
|
||||
loading="lazy"
|
||||
rounded-full bg-gray:10
|
||||
v-bind="$attrs"
|
||||
>
|
||||
<AccountHoverCard top="-3.2" left="-4.4" absolute :account="account" op0 pointer-events-none group-hover="pointer-events-auto op100 scale-100" delay-250 transition transform scale-20 class="ease-[cubic-bezier(0.4, 0.0, 0.2, 1)]" />
|
||||
<AccountAvatarImage :account="account" v-bind="$attrs" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<AccountAvatarImage v-else :account="account" v-bind="$attrs" />
|
||||
</template>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue