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

gitlab_ui.js « commons « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fe55148016700d7188cacf237cb317e56236980a (plain)
1
2
3
4
5
6
7
8
9
10
11
import Vue from 'vue';
import {
  GlProgressBar,
  GlLoadingIcon,
  GlTooltipDirective,
} from '@gitlab-org/gitlab-ui';

Vue.component('gl-progress-bar', GlProgressBar);
Vue.component('gl-loading-icon', GlLoadingIcon);

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