This commit is contained in:
syuilo
2020-09-21 11:17:04 +09:00
parent 2e4ccd8d13
commit 4167aac7dd
5 changed files with 20 additions and 14 deletions

View File

@@ -1,5 +1,6 @@
import { Component, defineAsyncComponent, markRaw, ref } from 'vue';
import * as PCancelable from 'p-cancelable';
import { EventEmitter } from 'eventemitter3';
import Stream from '@/scripts/stream';
import { store } from '@/store';
import { apiUrl } from '@/config';
@@ -201,3 +202,5 @@ export function sound(type: string) {
audio.volume = store.state.device.sfxVolume;
audio.play();
}
export const deckGlobalEvents = new EventEmitter();