screen_rotation
Copied to Clipboard
<html> <head> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> </head> <body> <div id="app"> <h3>Vue Js Get Src from iframe</h3> <iframe ref="myIframe" width="100%" height="400" src="https://www.youtube.com/embed/EdRYy38C_gE?list=RDEdRYy38C_gE" title="Jaane Dil Mein - Full Song | Mujhse Dosti Karoge | Hrithik Roshan, Rani, Lata Mangeshkar, Sonu Nigam" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe> <button @click="getIframeSrc">Get Iframe Src</button> <p v-if="iframeSrc">iframe Src: {{iframeSrc}}</p> </div> <script type="module"> const app = new Vue({ el: "#app", data() { return { iframeSrc: '' }; }, methods: { getIframeSrc() { this.iframeSrc = this.$refs.myIframe.src; } } }) </script> <style> #app { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; } iframe { margin-bottom: 20px; } button { background-color: #4CAF50; color: white; padding: 10px; border: none; border-radius: 5px; cursor: pointer; } button:hover { background-color: #3e8e41; } </style> </body> </html>