
Learning Vue.js 2
By :

As previously mentioned, Vuex is an application architecture for centralized state management. It was inspired by Flux and Redux, but it is a little bit easier to understand and to use:
Vuex architecture; the image is taken from the Vuex GitHub page at https://github.com/vuejs/vuex
Look in the mirror (do not forget to smile to yourself). You see a nice pretty human. However, there's a whole complex system inside it. What do you do when you feel cold? And how do you feel when it's hot? How does it feel to be hungry? And very hungry? And how does it feel to touch a fluffy cat? The human can be in various types of states (happy, hungry, smiley, angry, and so on). The human also has a lot of components, such as hands, arms, legs, stomach, face, and so on. Can you imagine how would it be if, let's say, a hand were able to directly influence your stomach, making you feel hungry, without your awareness?
The way we work is very similar to the centralized state management system. Our...