At my last job we did a comparison between Vue and React before rewriting a major frontend application. We did a POC in both React/Vue and ended up using Vue mainly due to the following reasons: Single File Components Single file components (.vue files) is the best thing about Vue. I understand this might be a personal preference, but we wanted to avoid CSS-IN-JS. Our designer could churn out neat html/css, but was a…
From the Vue documentation [1]:
>Even if you don’t like the idea of Single-File Components, you can still leverage its hot-reloading and pre-compilation features by separating your JavaScript and CSS into separate files:
This will be pre-compiled
If I end up going with Vue, I'd probably do that. It looks like a lot of boilerplate though ...Is there any tool from the Node ecosystem designed to reduce that boilerplate?
Thanks for any insights!
[1] https://vuejs.org/v2/guide/single-file-components.html#What-...