[Vuejs]-Auto play a sound when receive a new row data in Vue.js 16 October 2023 by thecoderscamp.com 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 [Vuejs]-How can add a button count on my component VueJS [Vuejs]-SPA Authentication on multiple cards Source:stackexchange.com