此處應(yīng)注意:iframe的src和正式環(huán)境的域名應(yīng)該是相同的,頂級(jí)域名相同也可捎琐,不然會(huì)出現(xiàn)跨域問(wèn)題
src:https://abc.baidu.com
瀏覽器環(huán)境:https://def.baidu.com
<template>
<div>
<iframe
id="iframe"
ref="iframe"
:src="grafana_api"
width="100%"
:height="mainHeight"
frameborder="no"
>
</iframe>
</div>
</template>
<script>
export default {
data(){
return{
mainHeight: '',
grafana_api: '',
}
},
mounted(){
window.screenHeight = document.body.clientHeight;
this.mainHeight = window.screenHeight - 52 + 'px';//高度自適應(yīng)
this.grafana_api = 'https://abc.baidu.com'
},
}
</script>