From 2a94d858a2dfe81dbeeb056f83b9ddff160e3d6e Mon Sep 17 00:00:00 2001 From: SylvSylv <32357181+SylvSylv@users.noreply.github.com> Date: Mon, 26 Nov 2018 17:20:18 +0100 Subject: [PATCH] Update state-management.md --- src/v2/guide/state-management.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/v2/guide/state-management.md b/src/v2/guide/state-management.md index 9550fcab1a..291becba51 100644 --- a/src/v2/guide/state-management.md +++ b/src/v2/guide/state-management.md @@ -49,7 +49,7 @@ var store = { } ``` -Notice all actions that mutate the store's state are put inside the store itself. This type of centralized state management makes it easier to understand what type of mutations could happen and how are they triggered. Now when something goes wrong, we'll also have a log of what happened leading up to the bug. +Notice all actions that mutate the store's state are put inside the store itself. This type of centralized state management makes it easier to understand what type of mutations could happen and how they are triggered. Now when something goes wrong, we'll also have a log of what happened leading up to the bug. In addition, each instance/component can still own and manage its own private state: