blob: 8b5393a98a614eee85fc927a234f0d8cb729cfde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import Timeline from '../timeline/timeline.vue'
const DMs = {
computed: {
timeline () {
return this.$store.state.statuses.timelines.dms
}
},
components: {
Timeline
}
}
export default DMs
|