summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/shared/mount_runner_aws_deployments.js
blob: f3807a33a2b6bc06f7d570b3d3d0e45dc4daa590 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import Vue from 'vue';
import RunnerAwsDeployments from '~/vue_shared/components/runner_aws_deployments/runner_aws_deployments.vue';

export function initRunnerAwsDeployments(componentId = 'js-runner-aws-deployments') {
  const el = document.getElementById(componentId);

  if (!el) {
    return null;
  }

  return new Vue({
    el,
    render(createElement) {
      return createElement(RunnerAwsDeployments);
    },
  });
}