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: 43fd5375222e2e4fde29c3384bcb50f4940ee60e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* eslint-disable no-new */

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);

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