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

16 lines
339 B
Vue
Raw Normal View History

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