|
The single state tree does not conflict with modularity - in later chapters we will discuss how to split your state managing logic into sub modules.
|
|
The single state tree does not conflict with modularity - in later chapters we will discuss how to split your state managing logic into sub modules.
|
|
Similar to `data` objects passed to Vue instances, the `state` object, once passed into a Vuex store, becomes reactive powered by [Vue's reactivity system](http://vuejs.org/guide/reactivity.html). This means binding Vuex state to Vue components is as simple as returning it from within a computed property:
|
|
Similar to `data` objects passed to Vue instances, the `state` object, once passed into a Vuex store, becomes reactive powered by [Vue's reactivity system](http://vuejs.org/guide/reactivity.html). This means binding Vuex state to Vue components is as simple as returning it from within a computed property:
|