15 lines
215 B
JavaScript
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
|