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

14 lines
217 B
JavaScript

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