From 10b2439c8b6411cb0330d0ab68c6b8b8c7e4ba56 Mon Sep 17 00:00:00 2001 From: Owenlee Date: Wed, 23 Feb 2022 08:44:19 +0800 Subject: [PATCH] chore: fix typo in keep-alive (#1575) Co-authored-by: LQQ --- src/guide/built-ins/keep-alive.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/built-ins/keep-alive.md b/src/guide/built-ins/keep-alive.md index 620d6e12b..e9017d662 100644 --- a/src/guide/built-ins/keep-alive.md +++ b/src/guide/built-ins/keep-alive.md @@ -129,7 +129,7 @@ export default { Note that: -- `onActivated``activated` is also called on mount, and `onDectivated``deactivated` on unmount. +- `onActivated``activated` is also called on mount, and `onDeactivated``deactivated` on unmount. - Both hooks work for not only the root component cached by ``, but also descendent components in the cached tree.