Skip to content

Commit

Permalink
fix(search): fix onblur
Browse files Browse the repository at this point in the history
fix #255
  • Loading branch information
TingShine committed Jul 29, 2022
1 parent c617d99 commit b3efa0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search/search.vue
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export default defineComponent({
};
const onBlur = (value: any, context: InputBlurContext) => {
state.labelActive = true;
state.labelActive = !value;
props.onBlur?.(value, { e: context.e });
};
Expand Down

0 comments on commit b3efa0a

Please sign in to comment.