2018-02-16 05:08:06 +01:00
|
|
|
<template>
|
|
|
|
<mk-users-list
|
|
|
|
:fetch="fetch"
|
2018-03-29 07:48:47 +02:00
|
|
|
:count="user.followersCount"
|
|
|
|
:you-know-count="user.followersYouKnowCount"
|
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/followers', {
|
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>
|