vue-youtube-embed
vue-youtube-embed copied to clipboard
Mute prop doesn't work
Mute settings in players-vars doesn't seem to work. In order to fix the issue I had to do this by adding the @ready and @playing events:
ready(event) {
this.player = event.target
this.player.mute()
},
playing(event) {
this.player.mute()
}
I have the same problem with this prop