aboutsummaryrefslogtreecommitdiff
path: root/src/components/mentions/mentions.js
blob: 841d5aa4810ef67a72bbc3b62490b696cadcb324 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Timeline from '../timeline/timeline.vue'

const Mentions = {
  computed: {
    timeline () {
      return this.$store.state.statuses.timelines.mentions
    }
  },
  components: {
    Timeline
  }
}

export default Mentions