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

index.js « ci_lint « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ed2cf1fe7149d05000454e767b355f60b9c50504 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import Vue from 'vue';
import CILint from './components/ci_lint.vue';

export default (containerId = '#js-ci-lint') => {
  const containerEl = document.querySelector(containerId);
  const { endpoint } = containerEl.dataset;

  return new Vue({
    el: containerEl,
    render(createElement) {
      return createElement(CILint, {
        props: {
          endpoint,
        },
      });
    },
  });
};