[Vuejs]-Auto play a sound when receive a new row data in Vue.js

0👍

You can use audio tag for this.

<audio
  ref="audio"
  src="/media/cc0-audio/t-rex-roar.mp3">
</audio>

Then after you receive the new orders just play the audio

this.$refs.audio.play()

JSFiddle example

Leave a comment