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

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

export default function(el, props) {
  return new Vue({
    el,
    components: {
      NewProjectCreationApp,
    },
    render(h) {
      return h(NewProjectCreationApp, { props });
    },
  });
}