1
0
mirror of https://github.com/elk-zone/elk synced 2024-12-03 01:08:07 +09:00
elk/components/status/StatusAccountDetails.vue

23 lines
573 B
Vue
Raw Normal View History

2022-11-24 23:20:50 +09:00
<script setup lang="ts">
import type { Account } from 'masto'
const { account, link = true } = defineProps<{
account: Account
link?: boolean
}>()
const accountHandle = $(useAccountHandle(account))
</script>
<template>
2022-11-25 19:20:01 +09:00
<NuxtLink
:to="link ? getAccountPath(account) : undefined"
2022-11-25 19:54:49 +09:00
flex="~ col" min-w-0 md:flex="~ row gap-2" md:items-center
2022-11-25 19:20:01 +09:00
>
<ContentRich font-bold break-words hover:underline :content="getDisplayName(account, { rich: true })" :emojis="account.emojis" />
2022-11-24 23:20:50 +09:00
<p op35 text-sm>
{{ accountHandle }}
</p>
</NuxtLink>
</template>