elk/components/account/AccountCard.vue

17 lines
346 B
Vue
Raw Normal View History

<script setup lang="ts">
import type { Account } from 'masto'
const { account } = defineProps<{
account: Account
}>()
</script>
<template>
2022-11-23 14:39:48 +00:00
<div flex justify-between hover:bg-active transition-100>
2022-11-22 22:40:20 +00:00
<AccountInfo :account="account" p1 />
<div h-full p1>
<AccountFollowButton :account="account" />
</div>
</div>
</template>