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

index.js « edit « feature_flags_user_lists « projects « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bbe84322462787ad0b087dc54544c1bc2c9fe690 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import Vue from 'vue';
import Vuex from 'vuex';
import EditUserList from '~/user_lists/components/edit_user_list.vue';
import createStore from '~/user_lists/store/edit';

Vue.use(Vuex);

document.addEventListener('DOMContentLoaded', () => {
  const el = document.getElementById('js-edit-user-list');
  const { userListsDocsPath } = el.dataset;
  return new Vue({
    el,
    store: createStore(el.dataset),
    provide: { userListsDocsPath },
    render(h) {
      return h(EditUserList, {});
    },
  });
});