vue 不触发自动播放音频
showAudio默认隐藏
设置静音muted,在需要播放时取消静音
<audio
ref="hintRef"
v-if="showAudio"
src="音频.mp3"
muted
></audio>
播放音频
AutoPlay() {
this.showAudio = true;
this.$nextTick(() => {
this.$refs.hintRef.muted = false;
this.$refs.hintRef.play();
// this.showAudio = false;
});
},
