1
0
Fork 0
akkoma-fe/src/components/mentions/mentions.js

15 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