summaryrefslogtreecommitdiff
path: root/src/client/app/desktop/views/components/following.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/app/desktop/views/components/following.vue')
-rw-r--r--src/client/app/desktop/views/components/following.vue26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/client/app/desktop/views/components/following.vue b/src/client/app/desktop/views/components/following.vue
deleted file mode 100644
index d55ce1c0d4..0000000000
--- a/src/client/app/desktop/views/components/following.vue
+++ /dev/null
@@ -1,26 +0,0 @@
-<template>
-<mk-users-list
- :fetch="fetch"
- :count="user.followingCount"
- :you-know-count="user.followingYouKnowCount"
->
- %i18n:@empty%
-</mk-users-list>
-</template>
-
-<script lang="ts">
-import Vue from 'vue';
-export default Vue.extend({
- props: ['user'],
- methods: {
- fetch(iknow, limit, cursor, cb) {
- (this as any).api('users/following', {
- userId: this.user.id,
- iknow: iknow,
- limit: limit,
- cursor: cursor ? cursor : undefined
- }).then(cb);
- }
- }
-});
-</script>