elk/components/account/AccountAvatarImage.vue

18 lines
267 B
Vue
Raw Normal View History

2022-11-25 11:04:35 +00:00
<script setup lang="ts">
import type { Account } from 'masto'
defineProps<{
account: Account
}>()
</script>
<template>
<img
:src="account.avatar"
:alt="account.username"
loading="lazy"
rounded-full bg-gray:10
v-bind="$attrs"
>
</template>