Resolve conflicts

This commit is contained in:
syuilo 2018-03-29 14:48:47 +09:00
parent 281b388e39
commit bfc193d8cd
308 changed files with 3045 additions and 3200 deletions

View file

@ -1,8 +1,8 @@
<template>
<mk-users-list
:fetch="fetch"
:count="user.following_count"
:you-know-count="user.following_you_know_count"
:count="user.followingCount"
:you-know-count="user.followingYouKnowCount"
>
フォロー中のユーザーはいないようです
</mk-users-list>
@ -15,7 +15,7 @@ export default Vue.extend({
methods: {
fetch(iknow, limit, cursor, cb) {
(this as any).api('users/following', {
user_id: this.user.id,
userId: this.user.id,
iknow: iknow,
limit: limit,
cursor: cursor ? cursor : undefined