Skip to content

Commit e7b2156

Browse files
committed
fix(link): catch errors
1 parent 46a354e commit e7b2156

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/RouterLink.ts

+7-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { isSameRouteLocationParams, isSameRouteRecord } from './location'
1717
import { routerKey, routeLocationKey } from './injectionSymbols'
1818
import { RouteRecord } from './matcher/types'
1919
import { NavigationFailure } from './errors'
20-
import { isBrowser } from './utils'
20+
import { isBrowser, noop } from './utils'
2121

2222
export interface RouterLinkOptions {
2323
/**
@@ -113,8 +113,12 @@ export function useLink(props: UseLinkOptions) {
113113
function navigate(
114114
e: MouseEvent = {} as MouseEvent
115115
): Promise<void | NavigationFailure> {
116-
if (guardEvent(e))
117-
return router[unref(props.replace) ? 'replace' : 'push'](unref(props.to))
116+
if (guardEvent(e)) {
117+
return router[unref(props.replace) ? 'replace' : 'push'](
118+
unref(props.to)
119+
// avoid uncaught errors are they are logged anyway
120+
).catch(noop)
121+
}
118122
return Promise.resolve()
119123
}
120124

0 commit comments

Comments
 (0)