This commit is contained in:
syuilo
2018-04-25 19:53:16 +09:00
parent 3d9ac6387e
commit c2e053a208
11 changed files with 363 additions and 79 deletions

View File

@@ -1,9 +1,11 @@
<template>
<mk-ui>
<header :class="$style.header">
<h1>{{ list.title }}</h1>
</header>
<mk-list-timeline :list="list"/>
<template v-if="!fetching">
<header :class="$style.header">
<h1>{{ list.title }}</h1>
</header>
<mk-user-list-timeline :list="list"/>
</template>
</mk-ui>
</template>
@@ -28,7 +30,7 @@ export default Vue.extend({
this.fetching = true;
(this as any).api('users/lists/show', {
id: this.$route.params.list
listId: this.$route.params.list
}).then(list => {
this.list = list;
this.fetching = false;