Basic statuses.

This commit is contained in:
Roger Braun 2016-10-28 15:19:42 +02:00
parent f8d6fe41f0
commit 534f2e8195
8 changed files with 92 additions and 6 deletions

View file

@ -0,0 +1,11 @@
import Timeline from '../timeline/timeline.vue'
const FriendsTimeline = {
components: {
Timeline
},
computed: {
timeline () { return this.$store.state.statuses.timelines.friends }
}
}
export default FriendsTimeline

View file

@ -0,0 +1,10 @@
<template>
<div class="timeline panel panel-default">
<div class="panel-heading">Friends Timeline</div>
<div class="panel-body">
<Timeline v-bind:timeline="timeline" />
</div>
</div>
</template>
<script src="./friends_timeline.js"></script>