Play sound in Vue

Let's assume that you want to play a sound after clicking on a button in Vue.

Example:

vue
<template>
    <button @click = 'playSound'>Click to play sound</button>
</template>

<script>
export default {
    name: 'playButton',
    methods: {
        playSound(){

            let audio = new Audio('https://www.soundhelix.com/examples/mp3/SoundHelix-Song-1.mp3')

            audio.play()

        }
    }
}
</script>

Hi, I'm Erik, an engineer from Barcelona. If you like the post or have any comments, say hi.