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

event_hub.js « sidebar « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f35506fd5de48a0f1c67ba0505d3c5b6aa5bd04f (plain)
1
2
3
4
5
6
7
8
import Vue from 'vue';

const eventHub = new Vue();

// TODO: remove eventHub hack after code splitting refactor
window.emitSidebarEvent = (...args) => eventHub.$emit(...args);

export default eventHub;