mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-04 16:09:59 +00:00
15 lines
296 B
Vue
15 lines
296 B
Vue
|
<script setup lang="ts">
|
||
|
import type { Account } from 'masto'
|
||
|
|
||
|
defineProps<{
|
||
|
account: Account
|
||
|
}>()
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<a :href="`/@${account.acct}`" flex gap-2 font-bold items-center>
|
||
|
<img :src="account.avatar" class="w-5 h-5 rounded">
|
||
|
{{ account.displayName }}
|
||
|
</a>
|
||
|
</template>
|