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, + () => {} +);