2022-11-23 23:39:48 +09:00
|
|
|
<script setup lang="ts">
|
|
|
|
import type { Account } from 'masto'
|
|
|
|
|
|
|
|
defineProps<{
|
|
|
|
account: Account
|
|
|
|
}>()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-24 07:40:35 +09:00
|
|
|
<NuxtLink :to="getAccountPath(account)">
|
2022-11-23 23:39:48 +09:00
|
|
|
{{ getDisplayName(account) }}
|
|
|
|
</NuxtLink>
|
|
|
|
</template>
|