iframe.vue
450 Bytes
<template>
<div class="iframe-box">
<iframe :src="src" frameborder="0"></iframe>
</div>
</template>
<script>
export default {
name: 'IFrame',
props: {
src: {
type: String,
default: ''
}
},
data() {
return {
};
}
};
</script>
<style lang="scss">
.iframe-box {
width: 100%;
height: 100%;
iframe {
width: 100%;
height: 100%;
}
}
</style>