32 lines
734 B
JavaScript
32 lines
734 B
JavaScript
import Vue from 'vue';
|
|
import Translate from '../vue_shared/translate';
|
|
import CycleAnalytics from './components/base.vue';
|
|
import createStore from './store';
|
|
|
|
Vue.use(Translate);
|
|
|
|
export default () => {
|
|
const store = createStore();
|
|
const el = document.querySelector('#js-cycle-analytics');
|
|
const { noAccessSvgPath, noDataSvgPath, requestPath, fullPath } = el.dataset;
|
|
|
|
store.dispatch('initializeVsa', {
|
|
requestPath,
|
|
fullPath,
|
|
});
|
|
|
|
// eslint-disable-next-line no-new
|
|
new Vue({
|
|
el,
|
|
name: 'CycleAnalytics',
|
|
store,
|
|
render: (createElement) =>
|
|
createElement(CycleAnalytics, {
|
|
props: {
|
|
noDataSvgPath,
|
|
noAccessSvgPath,
|
|
fullPath,
|
|
},
|
|
}),
|
|
});
|
|
};
|