12 lines
232 B
JavaScript
12 lines
232 B
JavaScript
|
import Timeline from '../timeline/timeline.vue'
|
||
|
const FriendsTimeline = {
|
||
|
components: {
|
||
|
Timeline
|
||
|
},
|
||
|
computed: {
|
||
|
timeline () { return this.$store.state.statuses.timelines.friends }
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default FriendsTimeline
|