summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/error_tracking/components/error_tracking_list.vue
blob: 84dfae640d98d2a8f52b193c7de8334bb0cce00b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<script>
import { mapActions, mapState } from 'vuex';

export default {
  props: {
    indexPath: {
      type: String,
      required: true,
    },
  },
  computed: {
    ...mapState(['errors']),
  },
  methods: {
    ...mapActions(['getErrorList']),
  },
  created() {
    this.getErrorList(this.indexPath);
  },
}
</script>

<template>
  <div>
    {{ errors }}
  </div>
</template>