How are people getting along with Vuex vs Redux? It looks pretty clean and grokable in the examples and deals with async out of the gate - https://github.com/vuejs/vuex/tree/dev/examples/counter
Using Vuex has a lot less overhead than Redux and async is super! It's fairly easy to keep modular. Here's a medium size store for a project I worked on: https://github.com/tmm/notational/tree/master/src/store
Vue.js vs. React
31–40 of 486 posts
Re: Vue.js vs. React
#32I've used both. What makes me pick Vue in the end is the fact that there is no compiler needed, no jsx and all the non-sense that goes with that. If you want a full blown huge application to last years, then go Angular... Although who knows if Angular will be there in 5 or so years. There is no perfect library/framework but I love Vue because Vue does exactly what it says on the tin.
Re: Vue.js vs. React
#33Vue is good for simple things. But it do not shines for complex apps and sometime makes it even harder than it should be. React can appears complicated when beginning, but it pays off on complex apps.
How much simpler than functions as components, that get their props as parameters could it get?
Every example of Vue components I have seen was more complicated...
Re: Vue.js vs. React
#34Re: Vue.js vs. React
#35I've used both. What makes me pick Vue in the end is the fact that there is no compiler needed, no jsx and all the non-sense that goes with that. If you want a full blown huge application to last years, then go Angular... Although who knows if Angular will be there in 5 or so years. There is no perfect library/framework but I love Vue because Vue does exactly what it says on the tin.
Re: Vue.js vs. React
#36Vue is good for simple things. But it do not shines for complex apps and sometime makes it even harder than it should be. React can appears complicated when beginning, but it pays off on complex apps.
This. How much simpler than functions as components, that get their props as parameters could it get? Every example of Vue components I have seen was more complicated...
Re: Vue.js vs. React
#37Go for Ember: - Proven tech - No licensing issues - Solid community - Community driven, no company calling the shots
Re: Vue.js vs. React
#38Go for Ember: - Proven tech - No licensing issues - Solid community - Community driven, no company calling the shots
Re: Vue.js vs. React
#39Re: Vue.js vs. React
#40My #1: download vue(.min).js and you are ready to go. No packagemanager, bundler and what not needed.
You can do the same with react. Unfortunately with either library you are going to want it for any serious project.
How is JSX more complicated than any template language?
How are Vue components any simpler than React components?