summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/commons/gitlab_ui.js
blob: f60665577fe520445348ce59f2273e8a0c530ae0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import Vue from 'vue';
import {
  GlPagination,
  GlProgressBar,
  GlModal,
  GlLoadingIcon,
  GlModalDirective,
  GlTooltipDirective,
} from '@gitlab-org/gitlab-ui';

Vue.component('gl-pagination', GlPagination);
Vue.component('gl-progress-bar', GlProgressBar);
Vue.component('gl-ui-modal', GlModal);
Vue.component('gl-loading-icon', GlLoadingIcon);

Vue.directive('gl-modal', GlModalDirective);
Vue.directive('gl-tooltip', GlTooltipDirective);