SOURCE

console 命令行工具 X clear

                    
>
console
new Vue({
    el: '#app',
    data(){
        return {
            url: 'https://www.baidu.com',
        }
    },
    methods: {
        change() {
            this.url = 'http://jsrun.net/new'
        }
    }
})
<body>
    <div id="app">
        <button @click="change">click</button>
        <iframe :src="url"></iframe>
    </div>
</body>
html, body {
    height: 100%;
}

#app {
    height: 100%;
}

iframe {
    position:absolute;
    left: 0;
    width: 100%;
    height: 100%;
}

button {
    z-index: 10;
    position:absolute;
    left: 0;
}

本项目引用的自定义外部资源