summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/environments/environments_bundle.js.es6
blob: 3b003f6f661cb6856b7d8b34a5057464b03b3113 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//= require vue
//= require_tree ./stores/
//= require ./components/environment
//= require ./vue_resource_interceptor

$(() => {
  window.gl = window.gl || {};

  if (gl.EnvironmentsListApp) {
    gl.EnvironmentsListApp.$destroy(true);
  }
  const Store = gl.environmentsList.EnvironmentsStore;

  gl.EnvironmentsListApp = new gl.environmentsList.EnvironmentsComponent({
    el: document.querySelector('#environments-list-view'),

    propsData: {
      store: Store.create(),
    },

  });
});