[DOC] event_bus: add initial doc

closes #157
This commit is contained in:
Géry Debongnie
2019-06-07 15:47:04 +02:00
parent 54c3dd76e4
commit f881640d3d
3 changed files with 29 additions and 1 deletions
+1 -1
View File
@@ -63,7 +63,7 @@ store.dispatch('addTodo', 'fix all bugs');
## Reference
The store is a simple `owl.EventBus` that triggers `update` events whenever its
The store is a simple [`owl.EventBus`](event_bus.md) that triggers `update` events whenever its
state is changed. Note that these events are triggered only after a microtask
tick, so only one event will be triggered for any number of state changes in a
call stack.