绘制选择bug赞提(粗处理)

This commit is contained in:
joylink_zhaoerwei 2024-10-11 17:07:53 +08:00
parent 8dc7214ceb
commit 38bc44f2f9

View File

@ -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,
() => {}
);
</script>