mirror of https://github.com/elk-zone/elk.git
19 lines
422 B
Vue
19 lines
422 B
Vue
<script setup lang="ts">
|
|
import type { Account } from 'masto'
|
|
|
|
const { account } = defineProps<{
|
|
account: Account
|
|
}>()
|
|
|
|
cacheAccount(account)
|
|
</script>
|
|
|
|
<template>
|
|
<div flex justify-between hover:bg-active transition-100>
|
|
<AccountInfo :account="account" hover p1 as="router-link" :to="getAccountPath(account)" />
|
|
<div h-full p1>
|
|
<AccountFollowButton :account="account" />
|
|
</div>
|
|
</div>
|
|
</template>
|