1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-27 09:34:39 +02:00
This commit is contained in:
こぴなたみぽ
2018-02-16 12:59:19 +09:00
parent 9c91ec07db
commit 62bbc44cc1
6 changed files with 178 additions and 183 deletions

View File

@@ -0,0 +1,26 @@
<template>
<mk-users-list
:fetch="fetch"
:count="user.following_count"
:you-know-count="user.following_you_know_count"
>
%i18n:mobile.tags.mk-user-following.no-users%
</mk-users-list>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
props: ['user'],
methods: {
fetch(iknow, limit, cursor, cb) {
this.$root.$data.os.api('users/following', {
user_id: this.user.id,
iknow: iknow,
limit: limit,
cursor: cursor ? cursor : undefined
}).then(cb);
}
}
});
</script>