Skip to content

Commit 7d5230e

Browse files
committed
feat(warn): improve message for onBeforeRoute*()
1 parent e400c77 commit 7d5230e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/navigationGuards.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export function onBeforeRouteLeave(leaveGuard: NavigationGuard) {
6767
if (!activeRecord) {
6868
__DEV__ &&
6969
warn(
70-
'No active route record was found. Are you missing a <router-view> component?'
70+
'No active route record was found when calling `onBeforeRouteLeave()`. Make sure you call this function inside of a component child of <router-view>. Maybe you called it inside of App.vue?'
7171
)
7272
return
7373
}
@@ -99,7 +99,7 @@ export function onBeforeRouteUpdate(updateGuard: NavigationGuard) {
9999
if (!activeRecord) {
100100
__DEV__ &&
101101
warn(
102-
'No active route record was found. Are you missing a <router-view> component?'
102+
'No active route record was found when calling `onBeforeRouteUpdate()`. Make sure you call this function inside of a component child of <router-view>. Maybe you called it inside of App.vue?'
103103
)
104104
return
105105
}

0 commit comments

Comments
 (0)