pleroma-fe/src/components/mentions/mentions.js
2026-06-04 21:56:25 +03:00

14 lines
244 B
JavaScript

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