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

global_toast.js « plugins « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c0de1cdc615fbfc542e40fc6e24f20d821dd7cc6 (plain)
1
2
3
4
5
6
7
8
import Vue from 'vue';
import { GlToast } from '@gitlab/ui';

Vue.use(GlToast);

export default function showGlobalToast(...args) {
  return Vue.toasted.show(...args);
}