1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<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" class="list-item"/> </div> </div> </template> <script src="./who_to_follow.js"></script> <style lang="scss"> </style>