mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-28 13:28:52 +03:00
13 lines
226 B
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>
|