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

14 lines
229 B
JavaScript
Raw Normal View History

import Timeline from 'src/components/timeline/timeline.vue'
2018-11-13 20:34:56 +01:00
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