mirror of
https://github.com/elk-zone/elk.git
synced 2025-02-16 23:39:47 +03:00
15 lines
238 B
Vue
15 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>
|