Skip to content

Commit e70b3a7

Browse files
committed
fix: Fixes emitted names. Closes #4635.
1 parent 8b7763b commit e70b3a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/VueEditor.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ export default {
184184
operations.map(operation => {
185185
if (operation.insert && operation.insert.hasOwnProperty("image")) {
186186
const { image } = operation.insert;
187-
this.$emit("imageRemoved", image);
187+
this.$emit("image-removed", image);
188188
}
189189
});
190190
},

0 commit comments

Comments
 (0)