Skip to content

Commit 80f3c3b

Browse files
committed
removed explicit import of defineEmits
2 parents d7712c0 + 80ee93b commit 80f3c3b

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/components/Canvas.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
Math.floor(100 * gridHeight) / 100,
4949
]"
5050
@activated="onActivated(componentData)"
51-
@deactivated="onDeactivated(componentData)"
51+
@deactivated="onDeactivated()"
5252
@dragstop="finishedDrag"
5353
@resizestop="finishedResize"
5454
:style="{

src/components/right-sidebar/CodeSnippet.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,7 @@ import {
4545
onMounted,
4646
onBeforeUnmount,
4747
nextTick,
48-
Ref,
49-
defineEmits
48+
Ref
5049
} from "vue";
5150
import { PrismEditor } from "vue-prism-editor";
5251
import { highlight, languages } from "prismjs/components/prism-core";

0 commit comments

Comments
 (0)