Aligator
Aligator

Reputation: 737

What's the equivalent of Vue's Vuex in Angular 2+?

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

Answers (1)

Jason Atallah
Jason Atallah

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

Related Questions