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"
}
}
- [Vuejs]-State variable returning an error when WATCH on IE browser
- [Vuejs]-Vuetify v-card overflows on IE11
Source:stackexchange.com