vue-youtube-embed icon indicating copy to clipboard operation
vue-youtube-embed copied to clipboard

Mute prop doesn't work

Open joaolisboa opened this issue 5 years ago • 1 comments

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()
}

joaolisboa avatar Nov 10 '20 12:11 joaolisboa

I have the same problem with this prop

sioniks avatar Dec 24 '20 12:12 sioniks