2019-01-16 02:33:08 +00:00
|
|
|
<template>
|
|
|
|
<div class="panel panel-default">
|
|
|
|
<div class="panel-heading">
|
|
|
|
{{$t('who_to_follow.who_to_follow')}}
|
|
|
|
</div>
|
|
|
|
<div class="panel-body">
|
2019-04-04 07:09:00 +00:00
|
|
|
<List :items="users">
|
2019-04-04 16:12:27 +00:00
|
|
|
<template slot="item" slot-scope="p">
|
2019-04-04 07:09:00 +00:00
|
|
|
<FollowCard :user="p.item" />
|
|
|
|
</template>
|
|
|
|
</List>
|
2019-01-16 02:33:08 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./who_to_follow.js"></script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
</style>
|