I have this iframe: <iframe src={{videoCodes}}></iframe>
and the following js:
var app = new Vue({
el: '#app',
data: {
videoCodes: "https://www.youtube.com/embed/Ok_v3b7S2_Y"
},
methods: {
}
})
But i cannot get videoCodes from Vue and put it into the iframe url. Help?