2022-11-15 15:56:11 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
import type { Account } from 'masto'
|
|
|
|
|
2022-11-22 13:03:36 +00:00
|
|
|
const { account } = defineProps<{
|
2022-11-15 15:56:11 +00:00
|
|
|
account: Account
|
|
|
|
}>()
|
2022-11-24 07:53:27 +00:00
|
|
|
|
|
|
|
cacheAccount(account)
|
2022-11-15 15:56:11 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-23 14:39:48 +00:00
|
|
|
<div flex justify-between hover:bg-active transition-100>
|
2022-11-27 19:40:16 +00:00
|
|
|
<AccountInfo :account="account" hover p1 as="router-link" :to="getAccountPath(account)" />
|
2022-11-22 22:40:20 +00:00
|
|
|
<div h-full p1>
|
|
|
|
<AccountFollowButton :account="account" />
|
2022-11-15 15:56:11 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|