summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/projects/experiment_new_project_creation/index.js
blob: 06920a5ab1944a804d0e73614721ae592ed77cee (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 });
    },
  });
}