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

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

export const initWorkItemsRoot = () => {
  const el = document.querySelector('#js-work-items');

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