import Timeline from '../timeline/timeline.vue' const PublicAndExternalTimeline = { components: { Timeline }, computed: { timeline () { return this.$store.state.statuses.timelines.publicAndExternal } }, created () { this.$store.dispatch('startFetching', 'publicAndExternal') }, destroyed () { this.$store.dispatch('stopFetching', 'publicAndExternal') } } export default PublicAndExternalTimeline