1
0
2024-02-07 14:56:56 +01:00

13 lines
281 B
TypeScript

import popSoundFile from '@/assets/audio/pop.mp3'
export const playSoundWhenDoneKey = 'playSoundWhenTaskDone'
export function playPopSound() {
try {
const popSound = new Audio(popSoundFile)
popSound.play()
} catch (e) {
console.error('Could not play pop sound:', e)
}
}