Skip to content

Commit

Permalink
fix: fix initial empty value
Browse files Browse the repository at this point in the history
  • Loading branch information
fterra-encora committed Oct 13, 2023
1 parent d57e6a8 commit 2d1d934
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const emitValueChange = (newValue: string): void => {
emit("empty", isEmpty(newValue));
};
emit("empty", true);
emit("empty", isEmpty(props.modelValue));
watch(
() => props.modelValue,
() => {
Expand Down

0 comments on commit 2d1d934

Please sign in to comment.