javascript - How to Pass URL to iFrame in Vue.js - Stack Overflow

I have no experience with Vue or JS.I want to pass a YouTube link from data() to iFrame.Can this be d

I have no experience with Vue or JS.

I want to pass a YouTube link from data() to iFrame.

Can this be done?

If so what steps are necessary to do so?

The code below shows what I have so far, though I'm not even sure if it's correct, as this is my first time in Vue.js and JS world.

I have looked here and elsewhere for ideas on how to do this but have not yet found anything I can use.

Any helpful tips are greatly appreciated, thank you.

<template>
   
    <div>
           
          <iframe width="800" height="230" src=this.link></iframe>
                  
    </div>
  
</template>

<script>

import axios from "axios";

export default{
    
     name:"Camera",
     data(){
         return{
         link:";,
         
     };
     },
    methods:{
        
        OnSelectCam(link){
            this.link = link;
        },    
            
        },
   
}   
   
</script>

<style scoped>
</style>

I have no experience with Vue or JS.

I want to pass a YouTube link from data() to iFrame.

Can this be done?

If so what steps are necessary to do so?

The code below shows what I have so far, though I'm not even sure if it's correct, as this is my first time in Vue.js and JS world.

I have looked here and elsewhere for ideas on how to do this but have not yet found anything I can use.

Any helpful tips are greatly appreciated, thank you.

<template>
   
    <div>
           
          <iframe width="800" height="230" src=this.link></iframe>
                  
    </div>
  
</template>

<script>

import axios from "axios";

export default{
    
     name:"Camera",
     data(){
         return{
         link:"https://www.youtube./embed/08Xmfi1QIxc",
         
     };
     },
    methods:{
        
        OnSelectCam(link){
            this.link = link;
        },    
            
        },
   
}   
   
</script>

<style scoped>
</style>

Share Improve this question asked Oct 29, 2021 at 17:36 Jim GallagherJim Gallagher 491 gold badge1 silver badge4 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 4
 <iframe width="800" height="230" :src="link"></iframe>

You need to add : before src and "" to the variable name. You don't need this. inside the template.

You need to bind your link value to the src attribute of your iframe like this <iframe width="800" height="230" :src=this.link></iframe>

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744899046a4599867.html

相关推荐

  • javascript - How to Pass URL to iFrame in Vue.js - Stack Overflow

    I have no experience with Vue or JS.I want to pass a YouTube link from data() to iFrame.Can this be d

    2天前
    50

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信