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