vue实现打开网页自动播放音乐

<template>
    <div>
    <audio src="../assets/music/樱花草.mp3" loop autoplay ref="au></audio>
    </div>
</template>

<script>
export default {
  name: 'yinghuo',
  data () {
    return {
    }
  },
  methods: {
    audio: () => {
      this.$nextTick(() => {
        this.$refs.au.play()
      })
    }
  }

}
</script>

有什么问题可以留言,求关注

你可能感兴趣的:(vue)