mirror of
https://git.youjo.love/youjo/youjo-fe.git
synced 2025-02-10 23:43:37 +01:00
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
|