美文网首页
直播室webview

直播室webview

作者: 秀萝卜 | 来源:发表于2022-04-20 15:40 被阅读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>

相关文章

网友评论

      本文标题:直播室webview

      本文链接:https://www.haomeiwen.com/subject/gbpgsrtx.html