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

14 lines
217 B
JavaScript
Raw Normal View History

2018-11-13 20:34:56 +01:00
import Timeline from '../timeline/timeline.vue'
const DMs = {
computed: {
2026-01-06 16:22:52 +02:00
timeline() {
2018-11-13 20:34:56 +01:00
return this.$store.state.statuses.timelines.dms
2026-01-06 16:22:52 +02:00
},
2018-11-13 20:34:56 +01:00
},
components: {
2026-01-06 16:22:52 +02:00
Timeline,
},
2018-11-13 20:34:56 +01:00
}
export default DMs