fix: batch lists

This commit is contained in:
Jannat Patel
2024-04-22 14:38:46 +05:30
parent f15fdcc42e
commit 4f7c3f14df
7 changed files with 34 additions and 6 deletions

View File

@@ -15,7 +15,14 @@
<div class="grid gap-8 mt-10">
<div v-for="(review, index) in reviews.data">
<div class="flex items-center">
<UserAvatar :user="review.owner_details" :size="'2xl'" />
<router-link
:to="{
name: 'Profile',
params: { username: review.owner_details.username },
}"
>
<UserAvatar :user="review.owner_details" :size="'2xl'" />
</router-link>
<div class="mx-4">
<router-link
:to="{