mirror of
https://akkoma.dev/AkkomaGang/akkoma-fe.git
synced 2025-02-13 16:13:22 +01:00
11 lines
232 B
JavaScript
11 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
|