blob: 75657cc821e10feb45b10c92626f9e774a0fa4c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<template>
<div>
<user-card v-for="friend in friends" :key="friend.id" :user="friend" :showFollows="true"></user-card>
<div @click="fetchFriends" class="new-status-notification text-center panel-footer">
<span v-if="error" class="alert error">Error loading follows</span>
<i v-else-if="loading" class="icon-spin3 animate-spin"/>
<span v-else-if="bottomedOut"></span>
</div>
</div>
</template>
<script src="./friends_list.js" />
|