logo

pleroma-fe

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

who_to_follow.vue (368B)


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