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

pipelines_bundle.js « pipelines « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 923d9bfb248cb7c1870b6e6408e7c9a410a0218a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import Vue from 'vue';
import PipelinesStore from './stores/pipelines_store';
import pipelinesComponent from './components/pipelines.vue';

document.addEventListener('DOMContentLoaded', () => new Vue({
  el: '#pipelines-list-vue',
  data() {
    const store = new PipelinesStore();

    return {
      store,
    };
  },
  components: {
    pipelinesComponent,
  },
  render(createElement) {
    return createElement('pipelines-component', {
      props: {
        store: this.store,
      },
    });
  },
}));