pleroma-fe/src/components/dm_timeline/dm_timeline.js
2026-06-04 21:56:25 +03:00

14 lines
229 B
JavaScript

import Timeline from 'src/components/timeline/timeline.vue'
const DMs = {
computed: {
timeline() {
return this.$store.state.statuses.timelines.dms
},
},
components: {
Timeline,
},
}
export default DMs