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

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

import ProfileTabs from './components/profile_tabs.vue';

export const initProfileTabs = () => {
  const el = document.getElementById('js-profile-tabs');

  if (!el) return false;

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