[DOC] clarify store documentation on connected components

closes #538
This commit is contained in:
Géry Debongnie
2019-12-06 12:25:55 +01:00
parent be8c3bbf6f
commit 124211c18b
+2 -2
View File
@@ -25,8 +25,8 @@ component should own which part of the state.
Owl's solution to this issue is a centralized store. It is a class that owns
some (or all) state, and lets the developer update it in a structured way, with
`actions`. Owl components can then connect to the store, and will be updated if
necessary.
`actions`. Owl components can then connect to the store to read their relevant
state, and they will be rerendered if the state is updated.
Note: Owl store is inspired by React Redux and VueX.