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 11:54:49 +01:00
defineOptions({
inheritAttrs: false,
})
</script>
<template>
2022-11-27 03:13:18 +01:00
<AccountAvatarImage :account="account" v-bind="$attrs" />
</template>