Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

248
Views
How to Pass URL to iFrame in Vue.js

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.com/embed/08Xmfi1QIxc",
         
     };
     },
    methods:{
        
        OnSelectCam(link){
            this.link = link;
        },    
            
        },
   
}   
   
</script>

<style scoped>
</style>

about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

 <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.

about 4 years ago · Juan Pablo Isaza Report

0

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>

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!