I’ve been using Vue on a personal open source project for a few months now and it’s felt a lot better than working with React. Server-side rendering w/ Nuxt doesn’t feel as hacky as server-side rendering in React, either. The only thing I’ve had trouble with finding the “right way” to get components to bind when they change data. It feels like a similar issue to React, where you end up needing container components to do all of these things - which just feels very extra.
React has some libraries like recompose/reselect that make things easier, but the same thing doesn’t exist as easily for Vue. I’ve been thinking of writing my own but worried about reinventing a wheel that I haven’t realized exists yet.
Does anyone here know of anything that could help with this?
I’ve been using Vue on a personal open source project for a few months now and it’s felt a lot better than working with React. Server-side rendering w/ Nuxt doesn’t feel as hacky as server-side rendering in React, either. The only thing I’ve had trouble with finding the “right way” to get components to bind when they change data. It feels like a similar issue to React, where you end up needing container components to do all of these things - which just feels very extra.
React has some libraries like recompose/reselect that make things easier, but the same thing doesn’t exist as easily for Vue. I’ve been thinking of writing my own but worried about reinventing a wheel that I haven’t realized exists yet.
Does anyone here know of anything that could help with this?
I have been using Vue as my first JS framework. I feared it would be difficult but I haven’t found it so bad so far.