Vuex — legacy state management. Pinia — modern replacement.
Vuex:
Pinia:
1// Vuex2const store = createStore({3 mutations: {4 INCREMENT(state) { state.count++ }5 }6})78// Pinia9const store = defineStore("counter", {10 actions: {11 increment() { this.count++ }12 }13})
Key: Use Pinia for new projects.