aboutsummaryrefslogtreecommitdiff
path: root/src/components/user_profile/user_profile.vue
diff options
context:
space:
mode:
authorHJ <30-hj@users.noreply.git.pleroma.social>2021-05-31 11:15:44 +0000
committerHJ <30-hj@users.noreply.git.pleroma.social>2021-05-31 11:15:44 +0000
commit0ca0e642a43a75f8e903db7361158ad32b84ecc4 (patch)
treefd96ac1da4e8b463cc3094dfdf4c88103179c673 /src/components/user_profile/user_profile.vue
parent4e96af044224dc10b8cc4eb270e025f1b8a1d29a (diff)
parent80220c1b07436098a8d87ffc0fc49fadc79ac9a4 (diff)
Merge branch 'v-slot-upgrade' into 'develop'
Change old slot syntax (removed in vue3) to new one See merge request pleroma/pleroma-fe!1379
Diffstat (limited to 'src/components/user_profile/user_profile.vue')
-rw-r--r--src/components/user_profile/user_profile.vue10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/components/user_profile/user_profile.vue b/src/components/user_profile/user_profile.vue
index 745e795d..aef897ae 100644
--- a/src/components/user_profile/user_profile.vue
+++ b/src/components/user_profile/user_profile.vue
@@ -60,10 +60,7 @@
:disabled="!user.friends_count"
>
<FriendList :user-id="userId">
- <template
- slot="item"
- slot-scope="{item}"
- >
+ <template v-slot:item="{item}">
<FollowCard :user="item" />
</template>
</FriendList>
@@ -75,10 +72,7 @@
:disabled="!user.followers_count"
>
<FollowerList :user-id="userId">
- <template
- slot="item"
- slot-scope="{item}"
- >
+ <template v-slot:item="{item}">
<FollowCard
:user="item"
:no-follows-you="isUs"