1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-09-06 20:29:08 +01:00
elk/components/status/StatusAccountDetails.vue

22 lines
596 B
Vue
Raw Normal View History

2022-11-24 14:20:50 +00:00
<script setup lang="ts">
import type { Account } from 'masto'
const { account, link = true } = defineProps<{
account: Account
link?: boolean
}>()
</script>
<template>
2022-11-27 02:13:18 +00:00
<AccountHoverWrapper :account="account">
<NuxtLink
:to="link ? getAccountPath(account) : undefined"
flex="~ col" min-w-0 md:flex="~ row gap-2" md:items-center
2022-11-27 03:54:46 +00:00
text-link-rounded
2022-11-27 02:13:18 +00:00
>
2022-11-27 03:54:46 +00:00
<ContentRich font-bold break-words :content="getDisplayName(account, { rich: true })" :emojis="account.emojis" />
2022-11-27 02:13:18 +00:00
<AccountHandle :account="account" />
</NuxtLink>
</AccountHoverWrapper>
2022-11-24 14:20:50 +00:00
</template>