mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-04 16:09:59 +00:00
16 lines
238 B
Vue
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>
|