From 29fc640437fee3c109271ab341071cae3ff540ea Mon Sep 17 00:00:00 2001 From: Adrian Adkison Date: Wed, 9 May 2018 11:40:13 -0700 Subject: [PATCH] Update navigation-guards.md Be consistent with referring to guard function names. --- docs/guide/advanced/navigation-guards.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/advanced/navigation-guards.md b/docs/guide/advanced/navigation-guards.md index 5962cae3b..acb63f572 100644 --- a/docs/guide/advanced/navigation-guards.md +++ b/docs/guide/advanced/navigation-guards.md @@ -140,7 +140,7 @@ beforeRouteLeave (to, from, next) { ## The Full Navigation Resolution Flow 1. Navigation triggered. -2. Call leave guards in deactivated components. +2. Call `beforeRouteLeave` guards in deactivated components. 3. Call global `beforeEach` guards. 4. Call `beforeRouteUpdate` guards in reused components. 5. Call `beforeEnter` in route configs.