This commit is contained in:
syuilo 2018-05-30 18:13:20 +09:00
parent dd94392317
commit ea223bab51
1 changed files with 9 additions and 2 deletions

View File

@ -4,7 +4,7 @@
<main v-if="!fetching"> <main v-if="!fetching">
<ul> <ul>
<li v-for="user in list.users" :key="user.id"><router-link :to="user | userPage">{{ user | userName }}</router-link></li> <li v-for="user in users" :key="user.id"><router-link :to="user | userPage">{{ user | userName }}</router-link></li>
</ul> </ul>
</main> </main>
</mk-ui> </mk-ui>
@ -18,7 +18,8 @@ export default Vue.extend({
data() { data() {
return { return {
fetching: true, fetching: true,
list: null list: null,
users: null
}; };
}, },
watch: { watch: {
@ -39,6 +40,12 @@ export default Vue.extend({
this.fetching = false; this.fetching = false;
Progress.done(); Progress.done();
(this as any).api('users/show', {
userIds: this.list.userIds
}).then(users => {
this.users = users;
});
}); });
} }
} }