elk/components/account/AccountCard.vue

17 wiersze
315 B
Vue

<script setup lang="ts">
import type { Account } from 'masto'
const { account } = defineProps<{
account: Account
}>()
</script>
<template>
<div flex justify-between>
<AccountInfo :account="account" p1 />
<div h-full p1>
<AccountFollowButton :account="account" />
</div>
</div>
</template>