pleroma-fe/src/components/bubble_timeline/bubble_timeline.js
2026-01-06 16:22:52 +02:00

19 lines
414 B
JavaScript

import Timeline from '../timeline/timeline.vue'
const BubbleTimeline = {
components: {
Timeline,
},
computed: {
timeline() {
return this.$store.state.statuses.timelines.bubble
},
},
created() {
this.$store.dispatch('startFetchingTimeline', { timeline: 'bubble' })
},
unmounted() {
this.$store.dispatch('stopFetchingTimeline', 'bubble')
},
}
export default BubbleTimeline