wujingjing
2024-07-22 4299cce7387e8ea2c5222ff1357f2a6c3459e4a7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<template>
    <IframeResizer
        class="iframe-resizer"
        license="GPLv3"
        :src="data"
        width="100%"
        style="min-height: 500px"
        frameborder="no"
        border="0"
        marginwidth="0"
        marginheight="0"
        scrolling="no"
        
    />
</template>
 
<script setup lang="ts">
import IframeResizer from '@iframe-resizer/vue/iframe-resizer.vue';
import { ref } from 'vue';
import { chatComProps } from '../common';
const iframeRef = ref<HTMLIFrameElement>(null);
 
const props = defineProps(chatComProps);
</script>
<style scoped lang="scss"></style>