mirror of
https://github.com/koel/koel
synced 2024-12-20 01:23:16 +00:00
15 lines
424 B
TypeScript
15 lines
424 B
TypeScript
import { Ref } from 'vue'
|
|
import { requireInjection } from '@/utils'
|
|
import { OverlayKey } from '@/symbols'
|
|
import Overlay from '@/components/ui/Overlay.vue'
|
|
|
|
let overlay: Ref<InstanceType<typeof Overlay>>
|
|
|
|
export const useOverlay = () => {
|
|
overlay = overlay || requireInjection(OverlayKey)
|
|
|
|
return {
|
|
showOverlay: overlay.value.show.bind(overlay.value),
|
|
hideOverlay: overlay.value.hide.bind(overlay.value)
|
|
}
|
|
}
|