欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

iframe能嵌入網址嗎

林雅南2年前22瀏覽0評論

iframe能嵌入網址嗎?

可以的,

代碼示例:

<template>

<div id="app">

<iframe

style="border:none"

:width="searchTableWidth"

:height="searchTableHeight"

v-bind:src="reportUrl"

></iframe>

</div>

</template>

<script>

import Vue from 'vue'

export default {

methods: {

widthHeight() {

this.searchTableHeight = window.innerHeight -146;

this.searchTableWidth = window.innerWidth - 280

},

},

data() {

return {

reportUrl: '',

searchTableHeight: 0,

searchTableWidth: 0

}

},

mounted() {

window.onresize = () => {

this.widthHeight(); // 自適應高寬度

};

this.$nextTick(function () {

this.widthHeight();

});

},

created() {

// 從路由里動態獲取 url地址 具體地址看libs下util.js里的 backendMenuToRoute 方法

this.reportUrl = this.$route.meta.pathUrl

},

watch: {

'$route': function () {

// 監聽路由變化

this.reportUrl = this.$route.meta.pathUrl

}

}

}

</script>

div css嵌套,iframe能嵌入網址嗎