iceshrimp-legacy/src/client/app/desktop/views/components/following.vue

27 lines
482 B
Vue
Raw Normal View History

2018-02-16 05:08:06 +01:00
<template>
<mk-users-list
:fetch="fetch"
2018-03-29 07:48:47 +02:00
:count="user.followingCount"
:you-know-count="user.followingYouKnowCount"
2018-02-16 05:08:06 +01:00
>
%i18n:@empty%
2018-02-16 05:08:06 +01:00
</mk-users-list>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
props: ['user'],
methods: {
fetch(iknow, limit, cursor, cb) {
2018-02-18 04:35:18 +01:00
(this as any).api('users/following', {
2018-03-29 07:48:47 +02:00
userId: this.user.id,
2018-02-16 05:08:06 +01:00
iknow: iknow,
limit: limit,
cursor: cursor ? cursor : undefined
}).then(cb);
}
}
});
</script>