summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/admin/statistics_panel/index.js
blob: 39112e3ddc08ede5ca8231d7b0307c057a384685 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import Vue from 'vue';
import StatisticsPanelApp from './components/app.vue';
import createStore from './store';

export default function(el) {
  if (!el) {
    return false;
  }

  const store = createStore();

  return new Vue({
    el,
    store,
    components: {
      StatisticsPanelApp,
    },
    render(h) {
      return h(StatisticsPanelApp);
    },
  });
}