logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://anongit.hacktivis.me/git/pleroma-fe.git/

who_to_follow.vue (407B)


  1. <template>
  2. <div class="panel panel-default">
  3. <div class="panel-heading">
  4. <h1 class="title">
  5. {{ $t('who_to_follow.who_to_follow') }}
  6. </h1>
  7. </div>
  8. <div class="panel-body">
  9. <FollowCard
  10. v-for="user in users"
  11. :key="user.id"
  12. :user="user"
  13. class="list-item"
  14. />
  15. </div>
  16. </div>
  17. </template>
  18. <script src="./who_to_follow.js"></script>