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

21 lines
398 B
Vue
Raw Normal View History

2019-01-16 02:33:08 +00:00
<template>
<div class="panel panel-default">
<div class="panel-heading">
2019-07-05 07:17:44 +00:00
{{ $t('who_to_follow.who_to_follow') }}
2019-01-16 02:33:08 +00:00
</div>
<div class="panel-body">
2019-07-05 07:17:44 +00:00
<FollowCard
v-for="user in users"
:key="user.id"
:user="user"
class="list-item"
/>
2019-01-16 02:33:08 +00:00
</div>
</div>
</template>
<script src="./who_to_follow.js"></script>
<style lang="scss">
</style>