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

new.js « environments « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 76aaf809d17c438d72cd1a3aa3f7289eee6a0371 (plain)
1
2
3
4
5
6
7
8
9
10
11
import Vue from 'vue';
import NewEnvironment from './components/new_environment.vue';

export default (el) =>
  new Vue({
    el,
    provide: { projectEnvironmentsPath: el.dataset.projectEnvironmentsPath },
    render(h) {
      return h(NewEnvironment);
    },
  });