iframe 播放视频

时间:2025-02-14 11:32:26
<template> <div class="w100 h100"> <iframe :src="liveUrl" class="w100 h100" frameborder="no" border="0" marginwidth="0" marginheight="0" ></iframe> </div> </template> <script> import axios from "axios"; export default { components: {}, data() { return { liveUrl: "", }; }, computed: {}, watch: {}, methods: {}, created() { this.liveUrl = this.$route.query.liveUrl; }, }; </script> <style scoped> </style>