From 38bc44f2f95c2e47923936072a94c9b04a395100 Mon Sep 17 00:00:00 2001 From: joylink_zhaoerwei Date: Fri, 11 Oct 2024 17:07:53 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=98=E5=88=B6=E9=80=89=E6=8B=A9bug?= =?UTF-8?q?=E8=B5=9E=E6=8F=90=EF=BC=88=E7=B2=97=E5=A4=84=E7=90=86=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/draw-app/IscsDrawProperties.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/draw-app/IscsDrawProperties.vue b/src/components/draw-app/IscsDrawProperties.vue index d1747db..fd95662 100644 --- a/src/components/draw-app/IscsDrawProperties.vue +++ b/src/components/draw-app/IscsDrawProperties.vue @@ -65,6 +65,11 @@ import LineProperty from './properties/LineProperty.vue'; import { Line } from 'src/graphics/line/Line'; import CircleProperty from './properties/CircleProperty.vue'; import { Circle } from 'src/graphics/circle/Circle'; +import { watch } from 'vue'; const drawStore = useDrawStore(); +watch( + () => drawStore.selectedGraphics, + () => {} +);