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

19 lines
297 B
JavaScript
Raw Normal View History

2016-10-28 15:19:42 +02:00
import Status from '../status/status.vue'
2016-10-26 19:03:55 +02:00
const Timeline = {
props: [
2016-10-28 15:40:13 +02:00
'timeline',
'timelineName'
2016-10-28 15:19:42 +02:00
],
components: {
Status
2016-10-28 15:40:13 +02:00
},
methods: {
showNewStatuses () {
this.$store.commit('showNewStatuses', { timeline: this.timelineName })
}
2016-10-28 15:19:42 +02:00
}
2016-10-26 19:03:55 +02:00
}
2016-10-28 15:19:42 +02:00
export default Timeline