yandere_fe/src/components/mentions/mentions.js

15 lines
230 B
JavaScript
Raw Normal View History

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