2023-09-01 03:02:12 +00:00
|
|
|
<script lang="ts" setup>
|
2024-06-27 10:10:55 +00:00
|
|
|
import PostContributorList from "@/components/user/PostContributorList.vue";
|
2024-06-26 10:42:50 +00:00
|
|
|
import type { ListedPost } from "@halo-dev/api-client";
|
|
|
|
import { VEntityField } from "@halo-dev/components";
|
2023-09-01 03:02:12 +00:00
|
|
|
|
|
|
|
withDefaults(
|
|
|
|
defineProps<{
|
|
|
|
post: ListedPost;
|
|
|
|
}>(),
|
|
|
|
{}
|
|
|
|
);
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<VEntityField>
|
|
|
|
<template #description>
|
2024-06-27 10:10:55 +00:00
|
|
|
<PostContributorList
|
|
|
|
:owner="post.owner"
|
|
|
|
:contributors="post.contributors"
|
|
|
|
/>
|
2023-09-01 03:02:12 +00:00
|
|
|
</template>
|
|
|
|
</VEntityField>
|
|
|
|
</template>
|