Skip to content

Commit 0384cb0

Browse files
committed
fix(types): better type for navigate
1 parent 7e08a66 commit 0384cb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/RouterLink.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ export function useLink(props: UseLinkOptions) {
107107
isSameRouteLocationParams(currentRoute.params, route.value.params)
108108
)
109109

110-
function navigate(e: MouseEvent = {} as MouseEvent): Promise<any> {
110+
function navigate(e: MouseEvent = {} as MouseEvent) {
111111
if (guardEvent(e))
112112
return router[unref(props.replace) ? 'replace' : 'push'](unref(props.to))
113113
return Promise.resolve()

0 commit comments

Comments
 (0)