1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-10-06 18:59:58 +01:00
elk/components/PostCard.vue

16 lines
353 B
Vue
Raw Normal View History

2022-11-13 05:34:43 +00:00
<script setup lang="ts">
import type { Post } from '~/api-client/types'
const props = defineProps<{
post: Post
}>()
</script>
<template>
2022-11-13 16:05:32 +00:00
<NuxtLink flex flex-col gap-2 my-4 :to="`/${post.account.acct}/${post.id}`">
2022-11-13 05:34:43 +00:00
<AccountInfo :account="post.account" />
2022-11-13 16:05:32 +00:00
<PostBody :post="post" />
2022-11-13 05:34:43 +00:00
<PostActions :post="post" />
2022-11-13 16:05:32 +00:00
</NuxtLink>
2022-11-13 05:34:43 +00:00
</template>