14 lines
230 B
JavaScript
14 lines
230 B
JavaScript
import Timeline from '../timeline/timeline.vue'
|
|
|
|
const Mentions = {
|
|
computed: {
|
|
timeline () {
|
|
return this.$store.state.statuses.timelines.mentions
|
|
}
|
|
},
|
|
components: {
|
|
Timeline
|
|
}
|
|
}
|
|
|
|
export default Mentions
|