elk/components/account/AccountAvatar.vue
2022-12-02 10:18:36 +08:00

23 lines
419 B
Vue

<script setup lang="ts">
import type { Account } from 'masto'
defineProps<{
account: Account
}>()
const loaded = $ref(false)
</script>
<template>
<img
:key="account.avatar"
:src="account.avatar"
:alt="$t('account.avatar_description', [account.username])"
loading="lazy"
rounded-full
:class="loaded ? 'bg-gray' : 'bg-gray:10'"
v-bind="$attrs"
@load="loaded = true"
>
</template>