DEV Community

Discussion on: From Angular To Vue: Feeling Like A Beginner Again

Collapse
 
sergio profile image
deleteme deleteme

Is it me or is Flux/Redux just a meme in the client-side world. It's so full of orchestration and files and plumbing. Bleh!

I've been using mobx stores in all my clientside projects and people on the teams love it. It's very straight forward to use and require no plumbing.

Look into Mobx.

Collapse
 
florimondmanca profile image
Florimond Manca

Thanks for the insight! I’m honestly not 100% convinced by whether Vuex (or any state management library, for that matter) is necessary, but I’ll sure look into Mobx as a possible (more lightweight?) alternative.

Collapse
 
kirklewis profile image
Kirk Lewis

Vuex is the by far the best implementation of Flux there is. Just simple to use. I use for even the most basic Vue app.

Collapse
 
kayis profile image
K

You don't even need that.

setState is probably enough for at least 80% of all applications.

Collapse
 
sergio profile image
deleteme deleteme

1hunnid