Adds messages

This commit is contained in:
Jonathan Bourdon
2024-06-27 12:38:49 -04:00
parent 8a4bab5a24
commit 8125df5b70
15 changed files with 223 additions and 21 deletions

View File

@@ -6,13 +6,22 @@
:src="imageSrc">
</v-img>
<div class="w-full border-b-2 p-6">
<CreatePost content-id="00000001-0000-0000-0000-000000000001"></CreatePost>
</div>
<div class="w-full border-b-2 p-6">
<h2 class="font-sans font-semibold">Commentaires</h2>
<PostList content-id="00000001-0000-0000-0000-000000000001"></PostList>
</div>
<PostContentMenu></PostContentMenu>
<div class="flex">
<PostCard v-for="(post, index) in posts"
:post="post"
class="m-2 bg-red w-full">
</PostCard>
<div class="flex">
<PostCard v-for="(post, index) in posts"
:post="post"
class="m-2 bg-red w-full">
</PostCard>
</div>
</div>
</template>
@@ -22,6 +31,8 @@
import PostContentMenu from '@/views/main/PostContentMenu.vue'
import PostCard from "@/views/main/PostCard.vue"
import posts from "@/views/main/posts.json"
import CreatePost from "@/views/messages/CreatePost.vue";
import PostList from "@/views/messages/PostList.vue";
let imageSrc = '/images/usersmedia/guillaumeMousseau/banners/bannerGuillaumeMousseau01.png';