[go: up one dir, main page]

Skip to content

Commit

Permalink
fix: fix useSearch document usage
Browse files Browse the repository at this point in the history
  • Loading branch information
CofCat456 committed Aug 12, 2023
1 parent 68f570b commit 23b322c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/core/useSearch.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const { isLoading, coordinates, getCoordinates } = useSearch(YOUR_GOOGLE_MAPS_AP
<template>
<input
type="text"
@blur="(value) => getCoordinates"
@blur="(e) => getCoordinates(e.target.value)"
/>
You will get Coordinates : {{ coordinates }}
</template>
Expand Down

0 comments on commit 23b322c

Please sign in to comment.