Beginning Vuex 4 with Vue 3

Originally published at: Beginning Vuex 4 with Vue 3 - Server Side Up

Vuex is one of the most useful plugins in the entire VueJS ecosystem. I honestly include Vuex in every app whether it’s an SPA or Monolith. Using Vuex modules allows me to divide up large, dynamic and complex pages or components into maintainable, reusable, scoped components without having to pass a million props. I’ve written…