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