18 lines
375 B
JavaScript
18 lines
375 B
JavaScript
import Timeline from '../timeline/timeline.vue'
|
|
const PublicTimeline = {
|
|
components: {
|
|
Timeline
|
|
},
|
|
computed: {
|
|
timeline () { return this.$store.state.statuses.timelines.public }
|
|
},
|
|
created () {
|
|
this.$store.dispatch('startFetching', 'public')
|
|
},
|
|
destroyed () {
|
|
this.$store.dispatch('stopFetching', 'public')
|
|
}
|
|
|
|
}
|
|
|
|
export default PublicTimeline
|