From f747fd3506c8b709daa9d1c0e8600285e268c9ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E6=B1=9F=E8=83=9C?= <857949055@qq.com> Date: Thu, 29 Jun 2023 17:39:17 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=A7=A3=E5=86=B3=E5=8D=95=E4=B8=AA?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=E6=97=8B=E8=BD=AC=E5=90=8E=EF=BC=8C=E5=86=8D?= =?UTF-8?q?=E7=BB=84=E5=90=88=E5=88=86=E7=BB=84=E6=B8=B2=E6=9F=93=E9=A2=84?= =?UTF-8?q?=E8=A7=88=E4=BC=9A=E9=94=99=E4=BD=8D=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1.解决单个组件旋转后,和其他组件组合分组后再次旋转,进行预览后该分组会错位的问题 2.解决TS类型报错 --- src/views/preview/components/PreviewRenderGroup/index.vue | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/views/preview/components/PreviewRenderGroup/index.vue b/src/views/preview/components/PreviewRenderGroup/index.vue index 354fa29c..fd7b04c3 100644 --- a/src/views/preview/components/PreviewRenderGroup/index.vue +++ b/src/views/preview/components/PreviewRenderGroup/index.vue @@ -46,14 +46,11 @@ const props = defineProps({ required: true }, groupIndex: { - type: Number, + type: [String, Number], required: true } })