I am trying to play an mp3 sound when I click on an image, but currently I get this error : Uncaught (in promise) DOMException: Failed to load because no supported source was found
Why isn't my audio playing and how can I make it play?
my function:
playSound() {
const sound = new Audio("/src/assets/sounds/openbeersound.wav");
sound.play();
}
<img
style="width: 100%;"
:src="beer.image_url"
alt="placeholder"
@click="playSound()"
/>