elk/components/account/AccountAvatar.vue

16 lines
238 B
Vue
Raw Normal View History

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