Reputation: 737
I am familiar with vue's vuex, but now I am working on angular application where I want apply same principle, all components will be managed from one place (store in Vue). Is some alternative for vuex in angular 2+? Thanks.
Upvotes: 13
Views: 8546
Reputation: 119
You have multiple options when adding state management to an Angular application. I also came from a Vue background before diving into Angular. I recommend taking a look at NGXS, you'll find the concepts to be very similar to Vuex.
Upvotes: 9