akkoma-fe/src/components/mentions/mentions.js

15 lines
230 B
JavaScript
Raw Normal View History

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