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