pleroma-fe/src/components/bubble_timeline/bubble_timeline.js

19 lines
414 B
JavaScript
Raw Normal View History

2025-06-18 17:55:08 +03:00
import Timeline from '../timeline/timeline.vue'
const BubbleTimeline = {
components: {
2026-01-06 16:22:52 +02:00
Timeline,
2025-06-18 17:55:08 +03:00
},
computed: {
2026-01-06 16:22:52 +02:00
timeline() {
return this.$store.state.statuses.timelines.bubble
},
2025-06-18 17:55:08 +03:00
},
2026-01-06 16:22:52 +02:00
created() {
2025-06-18 17:55:08 +03:00
this.$store.dispatch('startFetchingTimeline', { timeline: 'bubble' })
},
2026-01-06 16:22:52 +02:00
unmounted() {
2025-06-18 17:55:08 +03:00
this.$store.dispatch('stopFetchingTimeline', 'bubble')
2026-01-06 16:22:52 +02:00
},
2025-06-18 17:55:08 +03:00
}
export default BubbleTimeline