feat: use full id in url
This commit is contained in:
parent
008db64987
commit
2ed22678ed
6 changed files with 32 additions and 13 deletions
|
@ -10,15 +10,15 @@ defineProps<{
|
|||
<div bg-base border="~ base" rounded w-80 z-900 overflow-hidden p-4 class="account-hover-card">
|
||||
<AccountInfo :account="account" />
|
||||
<div text-sm flex flex-row text-gray mt-4>
|
||||
<NuxtLink :to="`/${getAccountHandle(account)}/`">
|
||||
<NuxtLink :to="`/${getShortHandle(account)}/`">
|
||||
{{ account.statusesCount }} Posts
|
||||
</NuxtLink>
|
||||
<span flex-1 text-center> • </span>
|
||||
<NuxtLink :to="`/${getAccountHandle(account)}/following`">
|
||||
<NuxtLink :to="`/${getShortHandle(account)}/following`">
|
||||
{{ account.followingCount }} Following
|
||||
</NuxtLink>
|
||||
<span flex-1 text-center> • </span>
|
||||
<NuxtLink :to="`/${getAccountHandle(account)}/followers`">
|
||||
<NuxtLink :to="`/${getShortHandle(account)}/followers`">
|
||||
{{ account.followersCount }} Followers
|
||||
</NuxtLink>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue