直播室webview
2022-04-20 本文已影响0人
秀萝卜
直播室的app是跳转第三方webview
h5是没有webview的但是我们可以有iframe嵌入
参考资料:
<template>
<div class="content">
<iframe :src="url" scrolling="auto" frameborder="0" class="myiframe" id="iframe"></iframe>
</div>
</template>
<script>
export default {
data() {
return {
url: ''
}
},
created() {
this.url = this.$route.query.url
}
}
</script>
<style lang="scss" scoped>
.content {
width: 100%;
height: 100%;
}
.myiframe {
width: 100%;
height: 100%;
}
</style>