mirror of
https://akkoma.dev/AkkomaGang/akkoma-fe
synced 2025-05-03 04:09:30 +08: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
|