Please enable JavaScript.
Coggle requires JavaScript to display documents.
Vuex - Coggle Diagram
Vuex
Core Concepts
-
Getters
-
-
-
-
mapGetters Helper
...mapGetters(['doneTodosCount','anotherGetter'])
-
-
Actions
-
-
-
-
-
-
-
Composing Actions
-
-
answer, actions can handle Promise
-
Modules
using a single state tree, it can become a big object as the store can get really bloated
-
-
Namespacing
By default, actions and mutations are still registered under the global namespace
-
-