New status showing.

This commit is contained in:
Roger Braun 2016-10-28 15:40:13 +02:00
parent 534f2e8195
commit eab256a7e5
5 changed files with 23 additions and 4 deletions

View file

@ -2,10 +2,16 @@ import Status from '../status/status.vue'
const Timeline = {
props: [
'timeline'
'timeline',
'timelineName'
],
components: {
Status
},
methods: {
showNewStatuses () {
this.$store.commit('showNewStatuses', { timeline: this.timelineName })
}
}
}