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

14 lines
232 B
JavaScript
Raw Normal View History

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