2018-11-18 11:00:15 +05:30
|
|
|
import Vue from 'vue';
|
2018-12-05 23:21:45 +05:30
|
|
|
import {
|
|
|
|
Pagination,
|
|
|
|
ProgressBar,
|
|
|
|
Modal,
|
|
|
|
LoadingIcon,
|
|
|
|
ModalDirective,
|
|
|
|
TooltipDirective,
|
|
|
|
} from '@gitlab-org/gitlab-ui';
|
2018-11-20 20:47:30 +05:30
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
Vue.component('gl-pagination', Pagination);
|
|
|
|
Vue.component('gl-progress-bar', ProgressBar);
|
|
|
|
Vue.component('gl-ui-modal', Modal);
|
|
|
|
Vue.component('gl-loading-icon', LoadingIcon);
|
2018-11-18 11:00:15 +05:30
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
Vue.directive('gl-modal', ModalDirective);
|
|
|
|
Vue.directive('gl-tooltip', TooltipDirective);
|