From db4c7baafce80a4dc4585478334797402f7a77ae Mon Sep 17 00:00:00 2001 From: yangyin <1850366751@qq.com> Date: 星期三, 17 七月 2024 17:10:24 +0800 Subject: [PATCH] Merge branch 'master' of http://47.103.154.90:83/r/WI/Web.V1.0 --- src/components/chat/chatComponents/htmlCom/HTMLCom.vue | 9 ++++----- 1 files changed, 4 insertions(+), 5 deletions(-) diff --git a/src/components/chat/chatComponents/htmlCom/HTMLCom.vue b/src/components/chat/chatComponents/htmlCom/HTMLCom.vue index 06a3ea5..1bc5780 100644 --- a/src/components/chat/chatComponents/htmlCom/HTMLCom.vue +++ b/src/components/chat/chatComponents/htmlCom/HTMLCom.vue @@ -1,9 +1,10 @@ -<template> +<template> <IframeResizer class="iframe-resizer" license="GPLv3" :src="data" width="100%" + style="min-height: 500px" frameborder="no" border="0" marginwidth="0" @@ -15,11 +16,9 @@ <script setup lang="ts"> import IframeResizer from '@iframe-resizer/vue/iframe-resizer.vue'; - import { ref } from 'vue'; +const iframeRef = ref<HTMLIFrameElement>(null); defineProps(['data']); </script> -<style scoped lang="scss"> - -</style> +<style scoped lang="scss"></style> -- Gitblit v1.9.3