1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-09-07 04:39:10 +01:00
elk/components/account/AccountHandle.vue

17 lines
419 B
Vue
Raw Normal View History

<script setup lang="ts">
import type { Account } from 'masto'
const { account } = defineProps<{
account: Account
}>()
const serverName = $computed(() => getServerName(account))
</script>
<template>
2022-12-02 07:27:44 +00:00
<p ws-nowrap text-ellipsis of-hidden text-secondary-light>
<span text-secondary>{{ getShortHandle(account) }}</span>
<span v-if="serverName" text-secondary-light>@{{ serverName }}</span>
</p>
</template>