aboutsummaryrefslogtreecommitdiff
path: root/src/components/who_to_follow/who_to_follow.vue
blob: 2752d519fcd38056711de2a023d3a8e0b615276f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<template>
  <div class="panel panel-default">
    <div class="panel-heading">
      {{$t('who_to_follow.who_to_follow')}}
    </div>
    <div class="panel-body">
      <List :items="users">
        <template slot="item" slot-scope="p">
          <FollowCard :user="p.item" />
        </template>
      </List>
    </div>
  </div>
</template>

<script src="./who_to_follow.js"></script>

<style lang="scss">
</style>