Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « statistics_panel « admin « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8c49fffe630bd8f45e5821071ecbd7fa80fa1586 (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);
    },
  });
}