1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-09-16 08:59:59 +01:00
elk/components/account/AccountLink.vue
2022-11-25 15:12:49 +08:00

14 lines
287 B
Vue

<script setup lang="ts">
import type { Account } from 'masto'
defineProps<{
account: Account
}>()
</script>
<template>
<NuxtLink :to="getAccountPath(account)">
<ContentRichSetup font-bold :content="getDisplayName(account)" :emojis="account.emojis" />
</NuxtLink>
</template>