1.代码实现:
<template>
<div class="iframe-container">
<iframe :src="url"></iframe>
</div>
</template>
<script>
export default {
name: "index",
data() {
return {
url:'https://carbonmarket.cn/'
}
},
mounted() {
},
methods: {
},
}
</script>
<style lang="scss" scoped>
.iframe-container {
width: 100%;
height: 99%;
}
iframe {
width: 100%;
height: 100%;
border: none;
}
</style>
2.效果预览: