mirror of
https://git.rape.pet/ulith/amputoma-fe.git
synced 2025-02-05 04:42:40 +01:00
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
|