Merge branch 'develop' of https://gitea.joylink.club/joylink/rtss-simulation-app-client into develop
This commit is contained in:
commit
975a8a89aa
|
@ -65,6 +65,11 @@ import LineProperty from './properties/LineProperty.vue';
|
||||||
import { Line } from 'src/graphics/line/Line';
|
import { Line } from 'src/graphics/line/Line';
|
||||||
import CircleProperty from './properties/CircleProperty.vue';
|
import CircleProperty from './properties/CircleProperty.vue';
|
||||||
import { Circle } from 'src/graphics/circle/Circle';
|
import { Circle } from 'src/graphics/circle/Circle';
|
||||||
|
import { watch } from 'vue';
|
||||||
|
|
||||||
const drawStore = useDrawStore();
|
const drawStore = useDrawStore();
|
||||||
|
watch(
|
||||||
|
() => drawStore.selectedGraphics,
|
||||||
|
() => {}
|
||||||
|
);
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in New Issue