summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ci_lint/index.js
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,
        },
      });
    },
  });
};