iframe.vue 638 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%;
    position: absolute;
    top: 25px;
    left: 25px;
    right: 25px;
    bottom: 25px;

    iframe {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
}
</style>