diff options
| author | shpuld <shp@cock.li> | 2019-01-20 15:52:35 +0200 |
|---|---|---|
| committer | shpuld <shp@cock.li> | 2019-01-20 15:52:35 +0200 |
| commit | 8761e039d04ff26944c87339ef55d2951a42696c (patch) | |
| tree | 69a1d49f724d99fb49c72bd7d2f6bb1a73e8f066 /src/components/who_to_follow/who_to_follow.vue | |
| parent | 485a061287149fe0ff5c4a188d21d775ff271f6d (diff) | |
| parent | 7651290e2be72ed35d7582757251eb151fdce953 (diff) | |
Merge dev fix conflicts
Diffstat (limited to 'src/components/who_to_follow/who_to_follow.vue')
| -rw-r--r-- | src/components/who_to_follow/who_to_follow.vue | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/components/who_to_follow/who_to_follow.vue b/src/components/who_to_follow/who_to_follow.vue new file mode 100644 index 00000000..df2e03c8 --- /dev/null +++ b/src/components/who_to_follow/who_to_follow.vue @@ -0,0 +1,15 @@ +<template> + <div class="panel panel-default"> + <div class="panel-heading"> + {{$t('who_to_follow.who_to_follow')}} + </div> + <div class="panel-body"> + <user-card v-for="user in users" :key="user.id" :user="user" :showFollows="true"></user-card> + </div> + </div> +</template> + +<script src="./who_to_follow.js"></script> + +<style lang="scss"> +</style> |
