2016-12-03 03:43:21 -08:00
|
|
|
import Timeline from '../timeline/timeline.vue'
|
2016-11-26 12:09:41 -08:00
|
|
|
|
|
|
|
const Mentions = {
|
|
|
|
computed: {
|
2016-12-03 03:43:21 -08:00
|
|
|
timeline () {
|
|
|
|
return this.$store.state.statuses.timelines.mentions
|
2016-11-26 12:09:41 -08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
components: {
|
2016-12-03 03:43:21 -08:00
|
|
|
Timeline
|
2016-11-26 12:09:41 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Mentions
|