1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-09-06 12:19:08 +01:00
elk/components/account/AccountAvatar.vue
2022-11-27 10:13:18 +08:00

16 lines
238 B
Vue

<script setup lang="ts">
import type { Account } from 'masto'
defineProps<{
account: Account
}>()
defineOptions({
inheritAttrs: false,
})
</script>
<template>
<AccountAvatarImage :account="account" v-bind="$attrs" />
</template>