<template>
<iframe
id="iframeContain"
name="iframeContain"
seamless
scrolling="yes"
:src="iframeURL"
>
您当前的浏览器不支持页面上的功能,请升级您当前的浏览器版本或使用谷歌浏览器访问当前页面
</iframe>
</template>
<script>
export default {
data () {
return {
iframeURL: 'xxxxxxxxxx'
}
}
}
</script>
<style lang='scss' scoped>
/** iframe样式 */
#iframeContain{
width: 100%;
height: 800px;
}
</style>
[scrolling]属性(yes, no,auto),规定是否在 iframe 中显示滚动条。
这样就可以把外部的iframe页面成功引进来了~~~