1
0
mirror of https://github.com/elk-zone/elk synced 2024-12-28 13:37:59 +09:00
elk/components/account/AccountAvatar.vue

19 lines
293 B
Vue
Raw Normal View History

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