|
|
|
@ -1,7 +1,6 @@ |
|
|
|
|
<template> |
|
|
|
|
<div class="flex flex-col md:flex-row gap-4"> |
|
|
|
|
<div class="md:basis-1/3 lg:basis-1/4 2xl:basis-1/6 flex flex-col"> |
|
|
|
|
<UserProfileCard /> |
|
|
|
|
<BaseCard plain> |
|
|
|
|
<img |
|
|
|
|
:src="user.illustrationUrl" |
|
|
|
@ -19,9 +18,6 @@ |
|
|
|
|
<SocialNetworkWall /> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="md:basis-1/3 lg:basis-1/4 2xl:basis-1/6"> |
|
|
|
|
<AddFriendSidebar /> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
@ -31,8 +27,7 @@ import { onMounted, provide, readonly, ref, watch } from "vue" |
|
|
|
|
import SocialNetworkWall from "./SocialWall.vue" |
|
|
|
|
import { useRoute } from "vue-router" |
|
|
|
|
import SocialSideMenu from "../../components/social/SocialSideMenu.vue" |
|
|
|
|
import AddFriendSidebar from "../../components/userreluser/AddFriendSidebar.vue"; |
|
|
|
|
import UserProfileCard from "../../components/userreluser/UserProfileCard.vue"; |
|
|
|
|
//import AddFriendSidebar from "../../components/userreluser/AddFriendSidebar.vue"; |
|
|
|
|
|
|
|
|
|
const store = useStore() |
|
|
|
|
const route = useRoute() |
|
|
|
|