1
0
Fork 0
mirror of https://github.com/elk-zone/elk.git synced 2025-03-24 18:41:32 +03:00
elk/components/account/AccountLink.vue

13 lines
226 B
Vue

<script setup lang="ts">
import type { Account } from 'masto'
defineProps<{
account: Account
}>()
</script>
<template>
<NuxtLink :to="getAccountPath(account)">
{{ getDisplayName(account) }}
</NuxtLink>
</template>