Skip to content
This repository was archived by the owner on Mar 14, 2025. It is now read-only.

Commit a8a4db8

Browse files
committed
Fix issue #107
1 parent 41cbb66 commit a8a4db8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Diff for: src/component.vue

+4-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,10 @@
8585
* @param event
8686
*/
8787
onInput(event) {
88-
this.$emit('input', event.target.value);
88+
// Lets wait for DOM to be updated
89+
this.$nextTick(() => {
90+
this.$emit('input', event.target.value);
91+
});
8992
},
9093
9194
/**

0 commit comments

Comments
 (0)