pleroma-fe/src/components/mentions/mentions.js
2026-01-06 16:22:52 +02:00

14 lines
232 B
JavaScript

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