yandere_fe/src/components/public_timeline/public_timeline.js

12 lines
229 B
JavaScript
Raw Normal View History

2016-10-26 10:03:55 -07:00
import Timeline from '../timeline/timeline.vue'
const PublicTimeline = {
components: {
Timeline
},
computed: {
timeline () { return this.$store.state.statuses.timelines.public }
}
}
export default PublicTimeline