28 lines
708 B
JavaScript
28 lines
708 B
JavaScript
import Vue from 'vue';
|
|
import store from './store';
|
|
import ErrorDetails from './components/error_details.vue';
|
|
import csrf from '~/lib/utils/csrf';
|
|
|
|
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, projectIssuesPath } = domEl.dataset;
|
|
|
|
return createElement('error-details', {
|
|
props: {
|
|
issueDetailsPath,
|
|
issueStackTracePath,
|
|
projectIssuesPath,
|
|
csrfToken: csrf.token,
|
|
},
|
|
});
|
|
},
|
|
});
|
|
};
|