mirror of
https://akkoma.dev/AkkomaGang/akkoma-fe.git
synced 2025-02-24 22:23:04 +01:00
19 lines
412 B
Vue
19 lines
412 B
Vue
<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" scope="p">
|
|
<FollowCard :user="p.item" />
|
|
</template>
|
|
</List>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script src="./who_to_follow.js"></script>
|
|
|
|
<style lang="scss">
|
|
</style>
|