aboutsummaryrefslogtreecommitdiff
path: root/src/components/who_to_follow
diff options
context:
space:
mode:
authortaehoon <th.dev91@gmail.com>2019-04-11 22:15:58 -0400
committertaehoon <th.dev91@gmail.com>2019-04-17 11:32:49 -0400
commite67fecff0a5e8c0034b860b8a7a625e35c03b5a3 (patch)
treea1715eb94235f1da0e6c6c4a08dec0529bce542e /src/components/who_to_follow
parentbb38a4311796c7d3c40e63585544c744a44402c1 (diff)
code readability
Diffstat (limited to 'src/components/who_to_follow')
-rw-r--r--src/components/who_to_follow/who_to_follow.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/who_to_follow/who_to_follow.vue b/src/components/who_to_follow/who_to_follow.vue
index 2752d519..412a2fbe 100644
--- a/src/components/who_to_follow/who_to_follow.vue
+++ b/src/components/who_to_follow/who_to_follow.vue
@@ -5,8 +5,8 @@
</div>
<div class="panel-body">
<List :items="users">
- <template slot="item" slot-scope="p">
- <FollowCard :user="p.item" />
+ <template slot="item" slot-scope="{item}">
+ <FollowCard :user="item" />
</template>
</List>
</div>