No sé por qué la configuración de la hora actual del audio no funciona en Google Chrome mientras funciona bien en otros navegadores.
Aquí está mi código.
<template> <div> <audio ref="audioRef" src="audio.mp3"></audio> <div style="width: 280px !important"> <div class="my-1 px-0 mx-0"> <v-slider dense height="15" @change="moveAudio" hide-details :value="playerProgress" ></v-slider> </div> </div> </div> <script> export default { data() { return { playerProgress: 0, }; }, methods() { playPauseAudio() { const audio = this.$refs.audioRef; audio.paused ? audio.play(); : audio.pause(); }, moveAudio(value) { const audio = this.$refs.audioRef; this.playerProgress = value; audio.currentTime = value; // This part cause audio to restart in google chrome while in other browsers it's going to that time. }, } } </script>Gracias por adelantado.