Chapter 1, Rethinking User Interfaces with Flux, Vue, and Vuex, introduces the concepts of Flux architecture and the small differences in Vuex implementation.
Chapter 2, Implementing Flux Architecture with Vuex, teaches the core concepts of Vuex, and we learn how we can use them with small executable examples.
Chapter 3, Setting Up Development and Test Environment, shows how to use webpack and npm to prepare our environment for developing and testing a Vue/Vuex application.
Chapter 4, Coding the EveryNote App Using Vuex State Management, explains how to develop an application to take notes, using all the concepts from Vuex we've just learned. In addition, we use karma to test all the components of the application.
Chapter 5, Debugging Vuex Applications, says that even by testing every component, sometimes debugging is necessary. We will understand how to use Chrome Developer tools and vue-devtools to debug our applications.
Chapter 6, Using the Vuex Plugin System, enriches the EveryNote app with some useful Vuex plugins, including two custom plugins developed from scratch.