Pinia.js over Vuex for Vue.js state management
Difficulty Level: Advanced
Prerequisite: You should be familiar with state management in frontend frameworks.
Takeaway: This article gives you an overview of how pinia.js is different from Vuex state management.
Why state management? Using Vue, the web page is designed by splitting into vue components, each component is an independent and reusable piece in the web page. The state of the component is not shared with other components or the nearest parent or its children, it’s a closed container with HTML, CSS and javascript.