akkoma-fe/src/components/who_to_follow/who_to_follow.vue

20 lines
420 B
Vue
Raw Normal View History

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">
<List :items="users">
2019-04-12 02:15:58 +00:00
<template slot="item" slot-scope="{item}">
<FollowCard :user="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>