summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/error_tracking/details.js
blob: b9b51a6539fa85acb43874e1d5b16e2e797f3532 (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
import Vue from 'vue';
import store from './store';
import ErrorDetails from './components/error_details.vue';

export default () => {
  // eslint-disable-next-line no-new
  new Vue({
    el: '#js-error_details',
    components: {
      ErrorDetails,
    },
    store,
    render(createElement) {
      const domEl = document.querySelector(this.$options.el);
      const { issueDetailsPath, issueStackTracePath } = domEl.dataset;

      return createElement('error-details', {
        props: {
          issueDetailsPath,
          issueStackTracePath,
        },
      });
    },
  });
};