Vuex: Is there a reason that you chose the Flux pattern over Redux pattern for Vue?

Created on 2 Mar 2016  路  2Comments  路  Source: vuejs/vuex

I'm reviewing frameworks and watching videos and I noticed that Vuex is based upon Flux which from my beginner perspective is being phased out for Redux. Is there a reason why Flux is being pushed?

Most helpful comment

Vuex is "Flux inspired", and similar to how Redux is different from vanilla Flux, Vuex is different from vanilla Flux too. In fact, Vuex is more similar to Redux than to original Flux.

All 2 comments

Vuex is "Flux inspired", and similar to how Redux is different from vanilla Flux, Vuex is different from vanilla Flux too. In fact, Vuex is more similar to Redux than to original Flux.

In addition: when we talk about Flux today, it's no longer about a specific pattern, but a loose set of principles about application state management - namely uni-directional data flow enforced via action dispatching. This applies to Redux as well, because Redux evolved from Flux.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

Anonyfox picture Anonyfox  路  80Comments

pschaub picture pschaub  路  24Comments

YamiOdymel picture YamiOdymel  路  32Comments

ruiposse picture ruiposse  路  27Comments

b44rd picture b44rd  路  23Comments