elk/components/account/AccountCard.vue

17 wiersze
315 B
Vue
Czysty Zwykły widok Historia

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