<template>
<div class="wendan">
<iframe :src = "this.wendan" :style="{'width':`${iWidth}px`,'height':`${iHeight}px`}" ></iframe>
</div>
</template>
<script>
export default {
name: 'wendan',
props: ['wendan'],
data(){
return {
iWidth:0,
iHeight:0
}
},
created(){
this.iWidth =document.documentElement.clientWidth;
this.iHeight=document.documentElement.clientHeight;
},
methods:{
getHeight(){
}
}
}
</script>
<style lang="less" scoped>
</style>
网友评论