Vuex crash course

theoneamin
4 min readMay 13, 2022

VUEX is a state management library for Vue js. Its purpose is to provide centralized access to data across multiple components. You’ll often hear “single source of truth” when discussing state management and that just means we’ll have one place where all components can get the data from.

Why do we need VUEX

If you’re working with Vue js it might just be your best bet. That may not be the case for different developers considering people’s different preferences and the complexity of the project but I personally prefer vuex.

--

--