elk/components/status/StatusAccountDetails.vue

20 lines
499 B
Vue
Raw Normal View History

2022-11-24 15:20:50 +01:00
<script setup lang="ts">
2023-01-08 07:21:09 +01:00
import type { mastodon } from 'masto'
2022-11-24 15:20:50 +01:00
const { account, link = true } = defineProps<{
2023-01-08 07:21:09 +01:00
account: mastodon.v1.Account
2022-11-24 15:20:50 +01:00
link?: boolean
}>()
</script>
<template>
2022-11-27 05:30:21 +01:00
<NuxtLink
:to="link ? getAccountRoute(account) : undefined"
2022-11-27 05:30:21 +01:00
flex="~ col" min-w-0 md:flex="~ row gap-2" md:items-center
text-link-rounded
>
<AccountDisplayName :account="account" font-bold line-clamp-1 ws-pre-wrap break-all />
2022-11-27 05:30:21 +01:00
<AccountHandle :account="account" />
</NuxtLink>
2022-11-24 15:20:50 +01:00
</template>