Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 747
Aligator Avatar asked Mar 10 '18 15:03

Aligator


1 Answers

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.

like image 167
Jason Atallah Avatar answered Sep 30 '22 08:09

Jason Atallah