aboutsummaryrefslogtreecommitdiff
path: root/src/components/timeline/timeline.js
blob: 433bca11a63992ec92f5da5c72edceac02b190a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import Status from '../status/status.vue'

const Timeline = {
  props: [
    'timeline',
    'timelineName'
  ],
  components: {
    Status
  },
  methods: {
    showNewStatuses () {
      this.$store.commit('showNewStatuses', { timeline: this.timelineName })
    }
  }
}

export default Timeline