You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/navigationGuards.ts
+2-2
Original file line number
Diff line number
Diff line change
@@ -67,7 +67,7 @@ export function onBeforeRouteLeave(leaveGuard: NavigationGuard) {
67
67
if(!activeRecord){
68
68
__DEV__&&
69
69
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?'
71
71
)
72
72
return
73
73
}
@@ -99,7 +99,7 @@ export function onBeforeRouteUpdate(updateGuard: NavigationGuard) {
99
99
if(!activeRecord){
100
100
__DEV__&&
101
101
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?'
0 commit comments