2022-11-23 00:42:20 +01:00
|
|
|
<script setup lang="ts">
|
|
|
|
import type { Account } from 'masto'
|
|
|
|
|
|
|
|
defineProps<{
|
|
|
|
account: Account
|
|
|
|
}>()
|
2022-11-25 11:54:49 +01:00
|
|
|
|
|
|
|
defineOptions({
|
|
|
|
inheritAttrs: false,
|
|
|
|
})
|
2022-11-23 00:42:20 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-27 03:13:18 +01:00
|
|
|
<AccountAvatarImage :account="account" v-bind="$attrs" />
|
2022-11-23 00:42:20 +01:00
|
|
|
</template>
|