From 81f2a4d55e1101c277e8f757ec3a308df641a273 Mon Sep 17 00:00:00 2001 From: Mitchell Date: Fri, 21 Oct 2022 15:31:43 +0800 Subject: [PATCH] docs: update outdated lifecycle diagram link --- docs/rules/order-in-components.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rules/order-in-components.md b/docs/rules/order-in-components.md index f8274810e..8068a34d6 100644 --- a/docs/rules/order-in-components.md +++ b/docs/rules/order-in-components.md @@ -105,7 +105,7 @@ export default { - `order` (`(string | string[])[]`) ... The order of properties. Elements are the property names or one of the following groups: - - `LIFECYCLE_HOOKS`: [Vue Lifecycle Events](https://v3.vuejs.org/guide/instance.html#lifecycle-diagram), in the order they are called + - `LIFECYCLE_HOOKS`: [Vue Lifecycle Events](https://vuejs.org/guide/essentials/lifecycle.html#lifecycle-diagram), in the order they are called - `ROUTER_GUARDS`: [Vue Router Navigation Guards](https://router.vuejs.org/guide/advanced/navigation-guards.html#in-component-guards), in the order they are called If an element is an array of strings, it means any of those can be placed there unordered. Default is above.