[Vuejs]-Binding VueJS data variable to iFrame src

0👍

Can you try to check this?

props: {
  videoId: {
    type: String,
    required: true
  }
},

data() {
  return {
    videoUrl: '',

  };
},

watch: {
  videoId: function(newVal) { 
     this.videoUrl = "https://www.youtube.com/embed/" +
         newVal +
         "?autoplay=1&origin=http://example.com"
  }
}

Leave a comment