1
0
Fork 0
akkoma-fe/src/components/dm_timeline/dm_timeline.js

15 lines
215 B
JavaScript

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