2022-11-25 11:21:53 +03:00
|
|
|
<script setup lang="ts">
|
|
|
|
import type { Account } from 'masto'
|
|
|
|
|
|
|
|
defineProps<{
|
|
|
|
account: Account
|
|
|
|
}>()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-28 23:42:17 +03:00
|
|
|
<div flex="~ col gap2" rounded min-w-90 max-w-120 z-100 overflow-hidden p-4>
|
2022-11-28 12:51:15 +03:00
|
|
|
<div flex="~ gap2" items-center>
|
|
|
|
<NuxtLink :to="getAccountPath(account)" flex-auto rounded-full hover:bg-active transition-100 pr5 mr-a>
|
|
|
|
<AccountInfo :account="account" />
|
2022-11-25 11:21:53 +03:00
|
|
|
</NuxtLink>
|
2022-11-28 12:51:15 +03:00
|
|
|
<AccountFollowButton text-sm :account="account" />
|
2022-11-25 11:21:53 +03:00
|
|
|
</div>
|
2022-11-26 23:41:18 +03:00
|
|
|
<ContentRich text-4 text-secondary :content="account.note" :emojis="account.emojis" />
|
2022-11-28 12:51:15 +03:00
|
|
|
<AccountPostsFollowers text-sm :account="account" />
|
2022-11-25 11:21:53 +03:00
|
|
|
</div>
|
|
|
|
</template>
|