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