2016-10-28 15:19:42 +02:00
|
|
|
import Timeline from '../timeline/timeline.vue'
|
2026-01-06 16:23:17 +02:00
|
|
|
|
2016-10-28 15:19:42 +02:00
|
|
|
const FriendsTimeline = {
|
|
|
|
|
components: {
|
2026-01-06 16:22:52 +02:00
|
|
|
Timeline,
|
2016-10-28 15:19:42 +02:00
|
|
|
},
|
|
|
|
|
computed: {
|
2026-01-06 16:22:52 +02:00
|
|
|
timeline() {
|
|
|
|
|
return this.$store.state.statuses.timelines.friends
|
|
|
|
|
},
|
|
|
|
|
},
|
2016-10-28 15:19:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default FriendsTimeline
|