Skip to content

Commit abaa809

Browse files
committed
make strict mode cost more explicit in docs (close #659)
1 parent 4e1e9b2 commit abaa809

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/en/strict.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ In strict mode, whenever Vuex state is mutated outside of mutation handlers, an
1313

1414
### Development vs. Production
1515

16-
**Do not enable strict mode when deploying for production!** Strict mode runs a deep watch on the state tree for detecting inappropriate mutations - make sure to turn it off in production to avoid the performance cost.
16+
**Do not enable strict mode when deploying for production!** Strict mode runs a synchronous deep watcher on the state tree for detecting inappropriate mutations, and it can be quite expensive when you make large amount of mutations to the state. Make sure to turn it off in production to avoid the performance cost.
1717

1818
Similar to plugins, we can let the build tools handle that:
1919

0 commit comments

Comments
 (0)